2
0
mirror of https://github.com/boostorg/tti.git synced 2026-01-25 18:52:17 +00:00
Files
tti/test/TestVMHasTemplateCheckParamsFail.cpp
Edward Diener 9dbb6c128e Added metafunction and updated doc.
[SVN r67598]
2011-01-02 21:20:16 +00:00

18 lines
325 B
C++

#include "TestVMHasTemplateCheckParams.hpp"
#include <boost/mpl/assert.hpp>
int main()
{
#if !defined(BOOST_NO_VARIADIC_MACROS)
// TemplateNotExist does not exist at all
BOOST_MPL_ASSERT((tti::has_template_check_params_TemplateNotExist<AType>));
#endif //!defined(BOOST_NO_VARIADIC_MACROS)
return 0;
}