Removing emplace from python plugin.

pull/809/head
Nicolas "Pixel" Noble 10 years ago
parent 3c17f04af9
commit e6d72c2b4e
  1. 8
      src/compiler/python_generator.cc

@ -245,8 +245,8 @@ bool PrintServerFactory(const ServiceDescriptor* service, Printer* out) {
if (!GetModuleAndMessagePath(input_type, &module_and_message)) { if (!GetModuleAndMessagePath(input_type, &module_and_message)) {
return false; return false;
} }
method_to_module_and_message.emplace( method_to_module_and_message.insert(
meth->name(), module_and_message); make_pair(meth->name(), module_and_message));
} }
out->Print("}\n"); out->Print("}\n");
// Ensure that we've imported all of the relevant messages. // Ensure that we've imported all of the relevant messages.
@ -306,8 +306,8 @@ bool PrintStubFactory(const ServiceDescriptor* service, Printer* out) {
if (!GetModuleAndMessagePath(output_type, &module_and_message)) { if (!GetModuleAndMessagePath(output_type, &module_and_message)) {
return false; return false;
} }
method_to_module_and_message.emplace( method_to_module_and_message.insert(
meth->name(), module_and_message); make_pair(meth->name(), module_and_message));
} }
out->Print("}\n"); out->Print("}\n");
// Ensure that we've imported all of the relevant messages. // Ensure that we've imported all of the relevant messages.

Loading…
Cancel
Save