Workaround for clang 3.2 libc++ empty struct bug.

Certain tests have empty structs or classes.
This encounters a bug with clang: http://llvm.org/bugs/show_bug.cgi?id=16764
This is fixed in later versions of clang, but not the version
currently bundled with Mavericks and XCode 5
This commit is contained in:
Marvin Greenberg 2014-01-31 16:03:14 -05:00
commit c3eff9234c
6 changed files with 15 additions and 7 deletions

View file

@ -21,6 +21,7 @@ namespace simuPOP
template<class _POP1, class _POP2 = POP>
class Operator
{
int x;
};
}