aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/GrMemoryPoolTest.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/GrMemoryPoolTest.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/GrMemoryPoolTest.cpp')
-rw-r--r--tests/GrMemoryPoolTest.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/GrMemoryPoolTest.cpp b/tests/GrMemoryPoolTest.cpp
index f7866ad5cb..f6b5659161 100644
--- a/tests/GrMemoryPoolTest.cpp
+++ b/tests/GrMemoryPoolTest.cpp
@@ -14,7 +14,6 @@
#include "SkTemplates.h"
#include "SkInstCnt.h"
-namespace {
// A is the top of an inheritance tree of classes that overload op new and
// and delete to use a GrMemoryPool. The objects have values of different types
// that can be set and checked.
@@ -177,7 +176,7 @@ A* A::Create(SkRandom* r) {
return NULL;
}
}
-}
+
struct Rec {
A* fInstance;
int fValue;