20 #ifndef PSTORE_SUPPORT_ASSERT_HPP 21 #define PSTORE_SUPPORT_ASSERT_HPP 23 #include "pstore/support/portab.hpp" 29 void assert_failed (
char const * str,
char const * file,
int line);
35 # define PSTORE_ASSERT(expr) \ 36 ((expr) ? static_cast<void> (0) : ::pstore::assert_failed (#expr, __FILE__, __LINE__)) 38 # define PSTORE_ASSERT(x) 41 #endif // PSTORE_SUPPORT_ASSERT_HPP Definition: nonpod2.cpp:40