aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-12-03 17:35:19 +0000
committerGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-12-03 17:35:19 +0000
commit93f03324189f211db95c312b3cb08b435cc5ac34 (patch)
tree0eb0f4c0c62ce4cdff52d98c54334a0094d3cc5d /include
parent08cb7286c6fe50ceaabc15a16f0020d808390f43 (diff)
Fixed remaining clang compiler warnings
Diffstat (limited to 'include')
-rw-r--r--include/utils/SkRunnable.h1
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;
};