summaryrefslogtreecommitdiffstats
path: root/src/compiler/nir/nir_array.h
diff options
context:
space:
mode:
authorEmil Velikov <[email protected]>2017-03-20 16:04:16 +0000
committerEmil Velikov <[email protected]>2017-03-22 16:55:22 +0000
commite3de145fa26dadf43f6e14ed69aace6a550cd157 (patch)
treebcf03029cf37225e28a15e20617cdb701d545bcd /src/compiler/nir/nir_array.h
parentb08aee305ea0caf5035932b26b8fc75782b49160 (diff)
nir: consistently use ifndef guards over pragma once
Signed-off-by: Emil Velikov <[email protected]> Acked-by: Vedran Miletić <[email protected]> Acked-by: Juha-Pekka Heikkila <[email protected]> Reviewed-by: Edward O'Callaghan <[email protected]>
Diffstat (limited to 'src/compiler/nir/nir_array.h')
-rw-r--r--src/compiler/nir/nir_array.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/compiler/nir/nir_array.h b/src/compiler/nir/nir_array.h
index 1db4e8cea36..4d7a532a7f1 100644
--- a/src/compiler/nir/nir_array.h
+++ b/src/compiler/nir/nir_array.h
@@ -25,7 +25,8 @@
*
*/
-#pragma once
+#ifndef NIR_ARRAY_H
+#define NIR_ARRAY_H
#ifdef __cplusplus
extern "C" {
@@ -94,3 +95,5 @@ nir_array_grow(nir_array *arr, size_t additional)
#ifdef __cplusplus
} /* extern "C" */
#endif
+
+#endif /* NIR_ARRAY_H */