2014-05-19 19:57:14 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2014 Two Blue Cubes Ltd
|
|
|
|
*
|
|
|
|
* Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TWOBLUECUBES_CATCH_REENABLE_WARNINGS_H_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_REENABLE_WARNINGS_H_INCLUDED
|
|
|
|
|
|
|
|
#ifdef __clang__
|
2015-03-04 08:54:35 +01:00
|
|
|
# ifdef __ICC // icpc defines the __clang__ macro
|
|
|
|
# pragma warning(pop)
|
|
|
|
# else
|
|
|
|
# pragma clang diagnostic pop
|
|
|
|
# endif
|
2014-07-28 08:27:05 +02:00
|
|
|
#elif defined __GNUC__
|
2015-03-04 08:54:35 +01:00
|
|
|
# pragma GCC diagnostic pop
|
2014-05-19 19:57:14 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_REENABLE_WARNINGS_H_INCLUDED
|