diff options
author | Vinson Lee <[email protected]> | 2011-02-03 19:19:12 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2011-02-03 19:19:12 -0800 |
commit | 61c59234f916406512b3591f46599cc29a5d8e23 (patch) | |
tree | 06e26d737b09487630fc685e234705a99bc667e5 /src/glsl/opt_constant_variable.cpp | |
parent | 151a945d38d8c9231799b00364c5b85c8a4b2279 (diff) |
glsl: Add using statements for standard library functions.
Standard library functions in C++ are in the std namespace. When using
C++-style header files for the standard library, some compilers, such as
Sun Studio, provide symbols only for the std namespace and not for the
global namespace.
This patch adds using statements for standard library functions. Another
option could have been to prepend standard library function calls with
'std::'.
This patch fixes several compilation errors with Sun Studio.
Diffstat (limited to 'src/glsl/opt_constant_variable.cpp')
-rw-r--r-- | src/glsl/opt_constant_variable.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/glsl/opt_constant_variable.cpp b/src/glsl/opt_constant_variable.cpp index 8068d0c1435..1f51da6e4ff 100644 --- a/src/glsl/opt_constant_variable.cpp +++ b/src/glsl/opt_constant_variable.cpp @@ -37,6 +37,9 @@ #include "ir_optimization.h" #include "glsl_types.h" +using std::calloc; +using std::free; + struct assignment_entry { exec_node link; int assignment_count; |