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

@ -191,7 +191,8 @@ template <class C> struct Param
struct Foo
{
Foo(int i) {
int x;
Foo(int i) : x(i) {
}
};