Added missing include guards.

This commit is contained in:
Andrey Semashev
2018-11-11 13:43:04 +03:00
parent 82957de970
commit 9d123dc9a3

View File

@ -16,6 +16,9 @@
* https://github.com/panaseleus/stack_unwinding/blob/master/boost/exception/uncaught_exception_count.hpp * 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 <exception> #include <exception>
#include <boost/config.hpp> #include <boost/config.hpp>
@ -91,3 +94,5 @@ inline unsigned int uncaught_exceptions() BOOST_NOEXCEPT
} // namespace core } // namespace core
} // namespace boost } // namespace boost
#endif // BOOST_CORE_UNCAUGHT_EXCEPTIONS_HPP_INCLUDED_