Bug fix: missing type in TEST() macro.

[SVN r12174]
This commit is contained in:
Vesa Karvonen
2001-12-31 11:26:55 +00:00
parent d8b52a3a42
commit 1f2380191c

View File

@ -14,5 +14,5 @@
#include <boost/preprocessor/cat.hpp>
#define TEST(C) typedef BOOST_PP_CAT(test_,__LINE__)[((C)==1) ? 1 : -1];
#define TEST(C) typedef int BOOST_PP_CAT(test_,__LINE__)[((C)==1) ? 1 : -1];
#endif