// (C) Copyright John Maddock and Steve Cleary 2000. // Permission to copy, use, modify, sell and distribute this software is // granted provided this copyright notice appears in all copies. This software // is provided "as is" without express or implied warranty, and with no claim // as to its suitability for any purpose. // See http://www.boost.org for most recent version including documentation. // // macros and helpers for working with integral-constant-expressions. #ifndef BOOST_UTILITY_YES_NO_TYPE_HPP #define BOOST_UTILITY_YES_NO_TYPE_HPP namespace boost { typedef char (&yes_type)[1]; typedef char (&no_type)[2]; } // namespace boost #endif // BOOST_UTILITY_YES_NO_TYPE_HPP