Index: src/processor/static_map_unittest.cc |
diff --git a/src/processor/static_map_unittest.cc b/src/processor/static_map_unittest.cc |
index 97b1e61a9373b974fe84a941d660de47c870f45b..393d43d5c5305718d82a0c4bb18b2337d162cf7e 100644 |
--- a/src/processor/static_map_unittest.cc |
+++ b/src/processor/static_map_unittest.cc |
@@ -180,7 +180,7 @@ class TestValidMap : public ::testing::Test { |
void TearDown() { |
for (int i = 0;i < kNumberTestCases; ++i) |
- delete map_data[i]; |
+ ::operator delete(map_data[i]); |
Mark Mentovai
2016/03/11 04:34:23
The use of operator new didn’t have ::, why does t
ivanpe
2016/03/12 00:30:04
The intention is to use the default new operator,
|
} |