diff options
Diffstat (limited to '3rdparty/bx/tests/unordered_map_nonpod.cpp')
-rw-r--r-- | 3rdparty/bx/tests/unordered_map_nonpod.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/3rdparty/bx/tests/unordered_map_nonpod.cpp b/3rdparty/bx/tests/unordered_map_nonpod.cpp index f9607e35e3f..96aa55e416c 100644 --- a/3rdparty/bx/tests/unordered_map_nonpod.cpp +++ b/3rdparty/bx/tests/unordered_map_nonpod.cpp @@ -1,5 +1,5 @@ /*- - * Copyright 2012-2014 Matthew Endsley + * Copyright 2012-2015 Matthew Endsley * All rights reserved * * Redistribution and use in source and binary forms, with or without @@ -29,7 +29,9 @@ #include <tinystl/allocator.h> #include <tinystl/unordered_map.h> -struct Foo { int bar; }; +namespace { + struct Foo { int bar; }; +} TEST(uomap_nonpod_compiles) { |