aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/cpp/blaze_util_test.cc
diff options
context:
space:
mode:
authorGravatar Thiago Farina <tfarina@chromium.org>2016-10-17 15:57:13 +0000
committerGravatar Philipp Wollermann <philwo@google.com>2016-10-18 10:56:33 +0000
commit80bb0f27a435974ac5105361bf79637aba519f98 (patch)
tree085df66994e412ed7740c89418870d847af7ce2d /src/test/cpp/blaze_util_test.cc
parentc0f3d4ee3aa81747f879efec4cbb65d4e72605d8 (diff)
cpp: header hygienization
* remove "using std::" declarations from header files * add missing "std::" to some string declarations at some header files * add "using std::string;" to some source files where necessary -- Change-Id: Ib64f62b5add499d6171fa922227194ac992fa542 Reviewed-on: https://bazel-review.googlesource.com/#/c/6630/ MOS_MIGRATED_REVID=136355671
Diffstat (limited to 'src/test/cpp/blaze_util_test.cc')
-rw-r--r--src/test/cpp/blaze_util_test.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/cpp/blaze_util_test.cc b/src/test/cpp/blaze_util_test.cc
index 99b81e3181..cfa73c9e0f 100644
--- a/src/test/cpp/blaze_util_test.cc
+++ b/src/test/cpp/blaze_util_test.cc
@@ -26,6 +26,8 @@
namespace blaze {
+using std::string;
+
static bool Symlink(const string& old_path, const string& new_path) {
return symlink(old_path.c_str(), new_path.c_str()) == 0;
}