mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-02 07:20:16 +01:00
Add multiple include protection to ir.h
This commit is contained in:
parent
5c2bd09888
commit
e309a6051d
1 changed files with 6 additions and 0 deletions
6
ir.h
6
ir.h
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue