diff options
| author | Ian Romanick <ian.d.romanick@intel.com> | 2010-03-15 15:20:15 -0700 |
|---|---|---|
| committer | Ian Romanick <ian.d.romanick@intel.com> | 2010-03-15 15:20:15 -0700 |
| commit | e309a6051d1a04ee581f0a47c6c585918fba1096 (patch) | |
| tree | b82829a08314add533843210ddb5030e3c6c6674 | |
| parent | 5c2bd09888394190e30f89ccd39177caaf0e3353 (diff) | |
Add multiple include protection to ir.h
| -rw-r--r-- | ir.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -22,6 +22,10 @@ * DEALINGS IN THE SOFTWARE. */ +#pragma once +#ifndef IR_H +#define IR_H + #include "list.h" #include "ir_visitor.h" @@ -396,3 +400,5 @@ public: extern void _mesa_glsl_initialize_variables(exec_list *instructions, struct _mesa_glsl_parse_state *state); + +#endif /* IR_H */ |
