Use enum trick to get around problem of undefined static variable.

This commit is contained in:
Kenneth Moreland 2014-04-02 10:53:03 -06:00
parent c2d926fa49
commit 3d3965b87f

@ -31,7 +31,7 @@ namespace {
template<int N>
struct TestClass
{
static const int NUMBER = N;
enum { NUMBER = N };
};
struct TestListTag1