diff options
author | 2015-03-26 08:14:29 +0100 | |
---|---|---|
committer | 2015-03-26 08:14:29 +0100 | |
commit | 522a6d8c30082725de73d6af310004726b307f93 (patch) | |
tree | 2b622c71afc626abe1a772144df8de807bb9485b /3rdparty/bx/tests | |
parent | 8ba6abb1c0f5d0cab7778c32593cc65f87854c2e (diff) |
updated to latest 3rdparty
Diffstat (limited to '3rdparty/bx/tests')
-rw-r--r-- | 3rdparty/bx/tests/unordered_map_nonpod.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/3rdparty/bx/tests/unordered_map_nonpod.cpp b/3rdparty/bx/tests/unordered_map_nonpod.cpp index c94580323fb..f9607e35e3f 100644 --- a/3rdparty/bx/tests/unordered_map_nonpod.cpp +++ b/3rdparty/bx/tests/unordered_map_nonpod.cpp @@ -29,10 +29,11 @@ #include <tinystl/allocator.h> #include <tinystl/unordered_map.h> +struct Foo { int bar; }; + TEST(uomap_nonpod_compiles) { - struct Foo { int bar; }; // verify this compiles typedef tinystl::unordered_map<int, Foo> map; map m; -}
\ No newline at end of file +} |