aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-06-15 07:00:53 +0000
committerGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-06-15 07:00:53 +0000
commitf85693d53a487b00360e77de69556b13bda0e602 (patch)
tree6a91ada4280942a856613b98483e32ea3cac8d03 /include
parentbaafdec13c24e6a680b099c2299c71098682f37e (diff)
Sanitizing source files in Housekeeper-Nightly
git-svn-id: http://skia.googlecode.com/svn/trunk@9631 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include')
-rw-r--r--include/core/SkTArray.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/core/SkTArray.h b/include/core/SkTArray.h
index a8d5e48aa6..b5ecdc98b1 100644
--- a/include/core/SkTArray.h
+++ b/include/core/SkTArray.h
@@ -456,7 +456,7 @@ void* operator new(size_t, SkTArray<T, MEM_COPY>* array, int atIndex) {
// Skia doesn't use C++ exceptions but it may be compiled with them enabled. Having an op delete
// to match the op new silences warnings about missing op delete when a constructor throws an
// exception.
-template <typename T, bool MEM_COPY>
+template <typename T, bool MEM_COPY>
void operator delete(void*, SkTArray<T, MEM_COPY>* array, int atIndex) {
SK_CRASH();
}