Write out __cplusplus in hash_info

This commit is contained in:
Daniel James
2018-01-20 21:53:03 +00:00
parent def7a785a5
commit b5c3b5d00a

View File

@@ -9,6 +9,11 @@
#include <iostream> #include <iostream>
int main() { int main() {
#if defined(__cplusplus)
std::cout << "__cplusplus: "
<< __cplusplus
<< std::endl;
#endif
std::cout << "BOOST_HASH_HAS_STRING_VIEW: " std::cout << "BOOST_HASH_HAS_STRING_VIEW: "
<< BOOST_HASH_HAS_STRING_VIEW << BOOST_HASH_HAS_STRING_VIEW
<< std::endl; << std::endl;