19 lines
463 B
C
19 lines
463 B
C
#pragma once
|
|
|
|
/* Carve version number */
|
|
#undef CARVE_VERSION
|
|
|
|
/* Define if using gnu libstdc++. */
|
|
#undef HAVE_LIBSTDCPP_UNORDERED_COLLECTIONS
|
|
|
|
/* Define if using boost collections. */
|
|
#undef HAVE_BOOST_UNORDERED_COLLECTIONS
|
|
|
|
/* Define if std::unordered_map and std::unordered_set are supported by your
|
|
compiler. */
|
|
#undef HAVE_STD_UNORDERED_COLLECTIONS
|
|
|
|
/* Define if TR1 collections are supportted by your compiler. */
|
|
#undef HAVE_TR1_UNORDERED_COLLECTIONS
|
|
|