From: Matt Turner Date: Wed, 19 Feb 2014 22:47:57 +0000 (-0800) Subject: i965/cfg: Protect brw_cfg.h from multiple inclusion. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d4d843e02f11ef1174adba541df16a75759c3512;p=mesa.git i965/cfg: Protect brw_cfg.h from multiple inclusion. Acked-by: Eric Anholt --- diff --git a/src/mesa/drivers/dri/i965/brw_cfg.h b/src/mesa/drivers/dri/i965/brw_cfg.h index 7bd3e2442f1..5911107f175 100644 --- a/src/mesa/drivers/dri/i965/brw_cfg.h +++ b/src/mesa/drivers/dri/i965/brw_cfg.h @@ -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 */