]> git-server-git.apps.pok.os.sepia.ceph.com Git - rocksdb.git/commitdiff
Fixed compile errors due to some gcc does not have std::map::emplace
authorYueh-Hsuan Chiang <yhchiang@fb.com>
Mon, 18 May 2015 20:44:31 +0000 (13:44 -0700)
committerYueh-Hsuan Chiang <yhchiang@fb.com>
Mon, 18 May 2015 20:48:56 +0000 (13:48 -0700)
Summary:
Fixed the following compile errors due to some gcc does not have std::map::emplace

util/thread_status_impl.cc: In static member function ‘static std::map<std::basic_string<char>, long unsigned int> rocksdb::ThreadStatus::InterpretOperationProperties(rocksdb::ThreadStatus::OperationType, const uint64_t*)’:
util/thread_status_impl.cc:88:20: error: ‘class std::map<std::basic_string<char>, long unsigned int>’ has no member named ‘emplace’
util/thread_status_impl.cc:90:20: error: ‘class std::map<std::basic_string<char>, long unsigned int>’ has no member named ‘emplace’
util/thread_status_impl.cc:94:20: error: ‘class std::map<std::basic_string<char>, long unsigned int>’ has no member named ‘emplace’
util/thread_status_impl.cc:96:20: error: ‘class std::map<std::basic_string<char>, long unsigned int>’ has no member named ‘emplace’
util/thread_status_impl.cc:98:20: error: ‘class std::map<std::basic_string<char>, long unsigned int>’ has no member named ‘emplace’
util/thread_status_impl.cc:101:20: error: ‘class std::map<std::basic_string<char>, long unsigned int>’ has no member named ‘emplace’
make: *** [util/thread_status_impl.o] Error 1

Test Plan: make db_bench

Reviewers: igor

Subscribers: dhruba, leveldb

Differential Revision: https://reviews.facebook.net/D38643

util/thread_status_impl.cc

index 6c72160b915ea98fb22f0cfde749baeb564c44d6..bd3cf82673402774ed8f54eb8b3abf72cfe2ed26 100644 (file)
@@ -97,21 +97,21 @@ std::map<std::string, uint64_t>
   for (int i = 0; i < num_properties; ++i) {
     if (op_type == OP_COMPACTION &&
         i == COMPACTION_INPUT_OUTPUT_LEVEL) {
-      property_map.emplace(
-          "BaseInputLevel", op_properties[i] >> 32);
-      property_map.emplace(
-          "OutputLevel", op_properties[i] % (1LU << 32));
+      property_map.insert(
+          {"BaseInputLevel", op_properties[i] >> 32});
+      property_map.insert(
+          {"OutputLevel", op_properties[i] % (1LU << 32)});
     } else if (op_type == OP_COMPACTION &&
                i == COMPACTION_PROP_FLAGS) {
-      property_map.emplace(
-          "IsManual", ((op_properties[i] & 2) >> 1));
-      property_map.emplace(
-          "IsDeletion", ((op_properties[i] & 4) >> 2));
-      property_map.emplace(
-          "IsTrivialMove", ((op_properties[i] & 8) >> 3));
+      property_map.insert(
+          {"IsManual", ((op_properties[i] & 2) >> 1)});
+      property_map.insert(
+          {"IsDeletion", ((op_properties[i] & 4) >> 2)});
+      property_map.insert(
+          {"IsTrivialMove", ((op_properties[i] & 8) >> 3)});
     } else {
-      property_map.emplace(
-          GetOperationPropertyName(op_type, i), op_properties[i]);
+      property_map.insert(
+          {GetOperationPropertyName(op_type, i), op_properties[i]});
     }
   }
   return property_map;