diff options
Diffstat (limited to 'cpp/include/IceUtil/Functional.h')
-rw-r--r-- | cpp/include/IceUtil/Functional.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cpp/include/IceUtil/Functional.h b/cpp/include/IceUtil/Functional.h index 3f57ae4b293..ccc78655940 100644 --- a/cpp/include/IceUtil/Functional.h +++ b/cpp/include/IceUtil/Functional.h @@ -7,7 +7,8 @@ // // ********************************************************************** -#pragma once +#ifndef ICE_UTIL_FUNCTIONAL_H +#define ICE_UTIL_FUNCTIONAL_H #include <IceUtil/Handle.h> #include <functional> @@ -383,3 +384,6 @@ secondConstVoidMemFun1(void (T::*p)(A) const) } } + +#endif + |