summaryrefslogtreecommitdiffstats
path: root/runtime/base
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2013-07-18 00:19:45 -0700
committerBrian Carlstrom <bdc@google.com>2013-07-18 11:57:02 -0700
commit3e3d591f781b771de89f3b989830da2b6ac6fac8 (patch)
tree9fc07d9785dd6e008f902ce1a5901df861d59b70 /runtime/base
parentdf62950e7a32031b82360c407d46a37b94188fbb (diff)
downloadart-3e3d591f781b771de89f3b989830da2b6ac6fac8.zip
art-3e3d591f781b771de89f3b989830da2b6ac6fac8.tar.gz
art-3e3d591f781b771de89f3b989830da2b6ac6fac8.tar.bz2
Fix cpplint build/namespaces issues
Change-Id: I19c68703270c1482d6c6aad8cdf97d3d2924360a
Diffstat (limited to 'runtime/base')
-rw-r--r--runtime/base/histogram_test.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/base/histogram_test.cc b/runtime/base/histogram_test.cc
index ea3e35f..9f3587a 100644
--- a/runtime/base/histogram_test.cc
+++ b/runtime/base/histogram_test.cc
@@ -20,7 +20,7 @@
#include <sstream>
-using namespace art;
+namespace art {
//Simple usage:
// Histogram *hist = new Histogram("SimplePercentiles");
@@ -266,3 +266,5 @@ TEST(Histtest, SpikyValues) {
hist->PrintConfidenceIntervals(stream, 0.99);
EXPECT_EQ(expected, stream.str());
}
+
+} // namespace art