// 4. If all is OK, update the stored keyword/value pairs.
// 1. Take a copy of the stored keyword/value pairs.
- map<string, string> values_copy = values_;
+ std::map<string, string> values_copy = values_;
// 2. Update the copy with the passed keywords.
BOOST_FOREACH(ConfigPair param, config_value->mapValue()) {
SCOPED_TRACE(trace_string);
// Construct a map of keyword value pairs.
- map<string, string> expected;
+ std::map<string, string> expected;
size_t expected_count = 0;
for (size_t i = 0; keyval[i] != NULL; i += 2) {
// Get the value. This should not be NULL
actual != parameters.end(); ++actual) {
// Does the keyword exist in the set of expected keywords?
- map<string, string>::iterator corresponding =
+ std::map<string, string>::iterator corresponding =
expected.find(actual->first);
ASSERT_TRUE(corresponding != expected.end());