From 2438c0a236639e510716228ffd9578329185fe00 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Mon, 20 Mar 2017 16:04:38 +0000 Subject: intel/compiler: consistently use ifndef guards over pragma once MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Emil Velikov Acked-by: Lionel Landwerlin Acked-by: Vedran Miletić Acked-by: Juha-Pekka Heikkila Reviewed-by: Edward O'Callaghan --- src/intel/compiler/brw_compiler.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/intel/compiler/brw_compiler.h') diff --git a/src/intel/compiler/brw_compiler.h b/src/intel/compiler/brw_compiler.h index 85257d494af..d4128bccbc1 100644 --- a/src/intel/compiler/brw_compiler.h +++ b/src/intel/compiler/brw_compiler.h @@ -21,7 +21,8 @@ * IN THE SOFTWARE. */ -#pragma once +#ifndef BRW_COMPILER_H +#define BRW_COMPILER_H #include #include "common/gen_device_info.h" @@ -1055,3 +1056,5 @@ brw_stage_has_packed_dispatch(const struct gen_device_info *devinfo, #ifdef __cplusplus } /* extern "C" */ #endif + +#endif /* BRW_COMPILER_H */ -- cgit v1.2.3