serialization/test/config_test.cpp
Robert Ramey c13b89c8f9 added missing headers to shared_ptr_helper.
note - failed to show up in tests.  probably included superfluously in other headers.
2014-08-12 09:05:54 -07:00

18 lines
297 B
C++

#include "../../../boost/config.hpp"
#if defined(__clang__)
#pragma message "__clang__ defined"
#endif
#if defined(BOOST_CLANG)
#pragma message "BOOST_CLANG defined"
#endif
#if defined(__GNUC__)
#pragma message "__GNUC__ defined"
#endif
#include "../../../boost/mpl/print.hpp"
typedef int x;