aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test
diff options
context:
space:
mode:
authorGravatar Florian Weikert <fwe@google.com>2015-08-10 09:45:22 +0000
committerGravatar Dmitry Lomov <dslomov@google.com>2015-08-10 10:09:58 +0000
commitbac37ad709f99c1963a805f767dadea08878d43b (patch)
tree64cf53d4aa91f124312c14c53444d9a04af27b4b /src/test
parent4d9def6cdea94c1d68319e2bd1e45b26b8796431 (diff)
Fixed Bazel test target //src/test/cpp/util:strings_test by adding a missing "using" statement.
-- MOS_MIGRATED_REVID=100262453
Diffstat (limited to 'src/test')
-rw-r--r--src/test/cpp/util/strings_test.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/cpp/util/strings_test.cc b/src/test/cpp/util/strings_test.cc
index 1a7c203838..54183f46b8 100644
--- a/src/test/cpp/util/strings_test.cc
+++ b/src/test/cpp/util/strings_test.cc
@@ -14,6 +14,8 @@
#include "src/main/cpp/util/strings.h"
#include "gtest/gtest.h"
+using std::vector;
+
namespace blaze_util {
TEST(BlazeUtil, JoinStrings) {