From f795bdbf21a9ae7a774137154a9458e15cff6cd8 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 13 Sep 2019 21:12:26 +1000 Subject: Cleanup: use header guards --- source/blender/blenlib/BLI_set.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'source/blender/blenlib/BLI_set.h') diff --git a/source/blender/blenlib/BLI_set.h b/source/blender/blenlib/BLI_set.h index 33b02badf48..feb0574338e 100644 --- a/source/blender/blenlib/BLI_set.h +++ b/source/blender/blenlib/BLI_set.h @@ -14,14 +14,15 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ +#ifndef __BLI_SET_H__ +#define __BLI_SET_H__ + /** \file * \ingroup bli * * This file provides a set implementation that uses open addressing with probing. */ -#pragma once - #include "BLI_hash_cxx.h" #include "BLI_open_addressing.h" #include "BLI_vector.h" @@ -468,3 +469,5 @@ template class Set { #undef ITER_SLOTS_END } // namespace BLI + +#endif /* __BLI_SET_H__ */ -- cgit v1.2.3