summaryrefslogtreecommitdiffstats
path: root/runtime/base
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2013-07-18 12:06:51 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-07-18 12:06:51 -0700
commit0ab5ef3e1ab1642fe59fe037f67ce8238da31b35 (patch)
tree8d2e4307c612387c208c34728559b4765f0c8ad9 /runtime/base
parentb9070095218595a5d6a37ef874df2794c1761030 (diff)
parent3e3d591f781b771de89f3b989830da2b6ac6fac8 (diff)
downloadart-0ab5ef3e1ab1642fe59fe037f67ce8238da31b35.zip
art-0ab5ef3e1ab1642fe59fe037f67ce8238da31b35.tar.gz
art-0ab5ef3e1ab1642fe59fe037f67ce8238da31b35.tar.bz2
am 3e3d591f: Fix cpplint build/namespaces issues
* commit '3e3d591f781b771de89f3b989830da2b6ac6fac8': Fix cpplint build/namespaces issues
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