search for: fb851a7a

Displaying 2 results from an estimated 2 matches for "fb851a7a".

2008 Nov 26
0
[LLVMdev] clang and overloaded functions
On Nov 26, 2008, at 10:00 AM, Brian Watt wrote: > In clang is it possible to declare C-language function prototypes > for overloaded functions even though it is not C-language legal. > It's because I see that GLSL provides something like this, and I'm > wondering if clang does too and how to express it either through > command line argument or language attributes,
2008 Nov 26
2
[LLVMdev] clang and overloaded functions
In clang is it possible to declare C-language function prototypes for overloaded functions even though it is not C-language legal. It's because I see that GLSL provides something like this, and I'm wondering if clang does too and how to express it either through command line argument or language attributes, etc.? int f(int, int); float f(float, float); int g() { float x = f(1.0f,