From 9d123dc9a319461d518e23f11c05b87b60b3894c Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Sun, 11 Nov 2018 13:43:04 +0300 Subject: [PATCH] Added missing include guards. --- include/boost/core/uncaught_exceptions.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/boost/core/uncaught_exceptions.hpp b/include/boost/core/uncaught_exceptions.hpp index eedcf00..b971ffb 100644 --- a/include/boost/core/uncaught_exceptions.hpp +++ b/include/boost/core/uncaught_exceptions.hpp @@ -16,6 +16,9 @@ * https://github.com/panaseleus/stack_unwinding/blob/master/boost/exception/uncaught_exception_count.hpp */ +#ifndef BOOST_CORE_UNCAUGHT_EXCEPTIONS_HPP_INCLUDED_ +#define BOOST_CORE_UNCAUGHT_EXCEPTIONS_HPP_INCLUDED_ + #include #include @@ -91,3 +94,5 @@ inline unsigned int uncaught_exceptions() BOOST_NOEXCEPT } // namespace core } // namespace boost + +#endif // BOOST_CORE_UNCAUGHT_EXCEPTIONS_HPP_INCLUDED_