diff options
author | Ian Romanick <[email protected]> | 2011-02-10 10:26:42 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2011-02-21 13:07:29 -0800 |
commit | 497baf4e4a6a0a2f247c7bfb9bf69a2b93c2c19f (patch) | |
tree | 37859f056fb13140fabe45a26bb129ddd0014fc3 /src/glsl/ast_expr.cpp | |
parent | 5a1fbf0f70a1c2d444f61494f86e26ca866c31d5 (diff) |
Use C-style system headers in C++ code to avoid issues with std:: namespace
Diffstat (limited to 'src/glsl/ast_expr.cpp')
-rw-r--r-- | src/glsl/ast_expr.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/glsl/ast_expr.cpp b/src/glsl/ast_expr.cpp index 974beb9f614..e624d11cf3b 100644 --- a/src/glsl/ast_expr.cpp +++ b/src/glsl/ast_expr.cpp @@ -20,12 +20,9 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. */ -#include <cstdio> -#include <cassert> +#include <assert.h> #include "ast.h" -using std::printf; - const char * ast_expression::operator_string(enum ast_operators op) { |