i965/cfg: Protect brw_cfg.h from multiple inclusion.

Acked-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
Matt Turner 2014-02-19 14:47:57 -08:00
parent 9b0108ddc1
commit d4d843e02f
1 changed files with 6 additions and 0 deletions

View File

@ -25,6 +25,10 @@
*
*/
#pragma once
#ifndef BRW_CFG_H
#define BRW_CFG_H
#include "brw_shader.h"
class bblock_t;
@ -89,3 +93,5 @@ public:
bblock_t **blocks;
int num_blocks;
};
#endif /* BRW_CFG_H */