Home | History | Annotate | Download | only in unord.map.modifiers
      1 //===----------------------------------------------------------------------===//
      2 //
      3 //                     The LLVM Compiler Infrastructure
      4 //
      5 // This file is dual licensed under the MIT and the University of Illinois Open
      6 // Source Licenses. See LICENSE.TXT for details.
      7 //
      8 //===----------------------------------------------------------------------===//
      9 
     10 // <unordered_map>
     11 
     12 // class unordered_map
     13 
     14 // insert(...);
     15 // emplace(...);
     16 
     17 // UNSUPPORTED: c++98, c++03
     18 
     19 
     20 #include <unordered_map>
     21 
     22 #include "container_test_types.h"
     23 #include "../../../map_allocator_requirement_test_templates.h"
     24 
     25 int main()
     26 {
     27   testMapInsert<TCT::unordered_map<> >();
     28   testMapInsertHint<TCT::unordered_map<> >();
     29   testMapEmplace<TCT::unordered_map<> >();
     30   testMapEmplaceHint<TCT::unordered_map<> >();
     31 }
     32