Index: src/gpu/GrTemplates.h |
diff --git a/src/gpu/GrTemplates.h b/src/gpu/GrTemplates.h |
deleted file mode 100644 |
index 8eab9c5ef3af97f5014b60b1dd07fae83210eac0..0000000000000000000000000000000000000000 |
--- a/src/gpu/GrTemplates.h |
+++ /dev/null |
@@ -1,25 +0,0 @@ |
-/* |
- * Copyright 2010 Google Inc. |
- * |
- * Use of this source code is governed by a BSD-style license that can be |
- * found in the LICENSE file. |
- */ |
- |
-#ifndef GrTemplates_DEFINED |
-#define GrTemplates_DEFINED |
- |
-#include "SkTypes.h" |
- |
-/** |
- * Use to cast a ptr to a different type, and maintain strict-aliasing |
- */ |
-template <typename Dst, typename Src> Dst GrTCast(Src src) { |
- union { |
- Src src; |
- Dst dst; |
- } data; |
- data.src = src; |
- return data.dst; |
-} |
- |
-#endif |