aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/FitsInTest.cpp
diff options
context:
space:
mode:
authorGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-10-12 17:25:17 +0000
committerGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-10-12 17:25:17 +0000
commitddf94cf108ae430877f009bd67b9070341426947 (patch)
tree91dc1bc9cbc3bf48da2891adfe835e568dee9e1a /tests/FitsInTest.cpp
parentb202adec608c78236765e8c543e56e7a7ef695d7 (diff)
Remove unnamed namespace usage from tests.
Skia code prefers static over unnamed namespace. BUG=None TEST=None R=bsalomon@google.com, robertphillips@google.com Author: tfarina@chromium.org Review URL: https://codereview.chromium.org/26962002 git-svn-id: http://skia.googlecode.com/svn/trunk@11747 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tests/FitsInTest.cpp')
-rw-r--r--tests/FitsInTest.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/FitsInTest.cpp b/tests/FitsInTest.cpp
index 97ef67d991..365d7ea3d4 100644
--- a/tests/FitsInTest.cpp
+++ b/tests/FitsInTest.cpp
@@ -11,8 +11,6 @@
#include "SkTFitsIn.h"
#include <limits>
-namespace {
-
#define TEST(S, s, D, expected) REPORTER_ASSERT(reporter, (SkTFitsIn<D>((S)(s)) == (expected)))
static void FitsInTest(skiatest::Reporter* reporter) {
@@ -70,7 +68,5 @@ static void FitsInTest(skiatest::Reporter* reporter) {
//TEST(float, 1, uint64_t, true);
}
-}
-
#include "TestClassDef.h"
DEFINE_TESTCLASS("FitsIn", FitsInTestClass, FitsInTest)