Remove more #include directives from util/util.h.

This time, it was also necessary to remove using declarations,
which meant adding "std::" to everything. I left std::string
alone for now, but added a couple of TODOs for it.

Change-Id: Idc45d6587be3ac3a2be1c9c941b4bad5b7a3fdb3
Reviewed-on: https://code-review.googlesource.com/5443
Reviewed-by: Paul Wankadia <[email protected]>
diff --git a/re2/testing/search_test.cc b/re2/testing/search_test.cc
index ac7cace..c14e6c8 100644
--- a/re2/testing/search_test.cc
+++ b/re2/testing/search_test.cc
@@ -320,7 +320,7 @@
     if (LOGGING) {
       // Build a dummy ExhaustiveTest call that will trigger just
       // this one test, so that we log the test case.
-      vector<string> atom, alpha, ops;
+      std::vector<string> atom, alpha, ops;
       atom.push_back(StringPiece(t.regexp).as_string());
       alpha.push_back(StringPiece(t.text).as_string());
       ExhaustiveTest(1, 0, atom, ops, 1, alpha, "", "");