diff options
author | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-12-03 17:35:19 +0000 |
---|---|---|
committer | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-12-03 17:35:19 +0000 |
commit | 93f03324189f211db95c312b3cb08b435cc5ac34 (patch) | |
tree | 0eb0f4c0c62ce4cdff52d98c54334a0094d3cc5d /include/utils | |
parent | 08cb7286c6fe50ceaabc15a16f0020d808390f43 (diff) |
Fixed remaining clang compiler warnings
https://codereview.appspot.com/6865053/
git-svn-id: http://skia.googlecode.com/svn/trunk@6646 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/utils')
-rw-r--r-- | include/utils/SkRunnable.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/utils/SkRunnable.h b/include/utils/SkRunnable.h index c7bedcc979..84e43750f6 100644 --- a/include/utils/SkRunnable.h +++ b/include/utils/SkRunnable.h @@ -10,6 +10,7 @@ class SkRunnable { public: + virtual ~SkRunnable() {}; virtual void run() = 0; }; |