aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/cpp/util/file_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/util/file_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/util/file_test.cc')
-rw-r--r--src/test/cpp/util/file_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/cpp/util/file_test.cc b/src/test/cpp/util/file_test.cc
index 48b08b3dd4..9ea3a85411 100644
--- a/src/test/cpp/util/file_test.cc
+++ b/src/test/cpp/util/file_test.cc
@@ -17,7 +17,7 @@
namespace blaze_util {
TEST(BlazeUtil, JoinPath) {
- string path = JoinPath("", "");
+ std::string path = JoinPath("", "");
ASSERT_EQ("", path);
path = JoinPath("a", "b");