diff --git a/tests/unordered_map_nonpod.cpp b/tests/unordered_map_nonpod.cpp index c945803..f9607e3 100644 --- a/tests/unordered_map_nonpod.cpp +++ b/tests/unordered_map_nonpod.cpp @@ -29,10 +29,11 @@ #include #include +struct Foo { int bar; }; + TEST(uomap_nonpod_compiles) { - struct Foo { int bar; }; // verify this compiles typedef tinystl::unordered_map map; map m; -} \ No newline at end of file +}