diff options
author | 2013-07-18 00:19:45 -0700 | |
---|---|---|
committer | 2013-07-18 11:57:02 -0700 | |
commit | 3e3d591f781b771de89f3b989830da2b6ac6fac8 (patch) | |
tree | 9fc07d9785dd6e008f902ce1a5901df861d59b70 /runtime/base/histogram_test.cc | |
parent | df62950e7a32031b82360c407d46a37b94188fbb (diff) |
Fix cpplint build/namespaces issues
Change-Id: I19c68703270c1482d6c6aad8cdf97d3d2924360a
Diffstat (limited to 'runtime/base/histogram_test.cc')
-rw-r--r-- | runtime/base/histogram_test.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/base/histogram_test.cc b/runtime/base/histogram_test.cc index ea3e35ff93..9f3587aa7f 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 |