| 1 | #include "../../../boost/config.hpp" |
|---|---|
| 2 | |
| 3 | #if defined(__clang__) |
| 4 | #pragma message "__clang__ defined" |
| 5 | #endif |
| 6 | |
| 7 | #if defined(BOOST_CLANG) |
| 8 | #pragma message "BOOST_CLANG defined" |
| 9 | #endif |
| 10 | |
| 11 | #if defined(__GNUC__) |
| 12 | #pragma message "__GNUC__ defined" |
| 13 | #endif |
| 14 | |
| 15 | #include "../../../boost/mpl/print.hpp" |
| 16 | |
| 17 | typedef int x; |
| 18 |
