mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
glsl: Add missing include guards
Signed-off-by: Michał Janiszewski <janisozaur+signed@gmail.com> Reviewed-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
parent
fddf384d1d
commit
0654450911
1 changed files with 5 additions and 0 deletions
|
|
@ -21,6 +21,9 @@
|
|||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifndef IR_BUILDER_H
|
||||
#define IR_BUILDER_H
|
||||
|
||||
#include "ir.h"
|
||||
|
||||
namespace ir_builder {
|
||||
|
|
@ -236,3 +239,5 @@ ir_if *if_tree(operand condition,
|
|||
ir_instruction *else_branch);
|
||||
|
||||
} /* namespace ir_builder */
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue