Fix clang compiler error in SkSLFileOutputStream
authorMatt Sarett <msarett@google.com>
Fri, 5 May 2017 17:21:52 +0000 (13:21 -0400)
committerSkia Commit-Bot <skia-commit-bot@chromium.org>
Fri, 5 May 2017 17:59:46 +0000 (17:59 +0000)
Bug: skia:
Change-Id: Ic3b62ea82c12c9cc5ee8b56b05573e1d06342c0b
Reviewed-on: https://skia-review.googlesource.com/15626
Reviewed-by: Ethan Nicholas <ethannicholas@google.com>
Commit-Queue: Matt Sarett <msarett@google.com>

src/sksl/SkSLFileOutputStream.h

index 65e8a80..7eba19f 100644 (file)
@@ -20,7 +20,7 @@ public:
         fFile = fopen(name, "w");
     }
 
-    ~FileOutputStream() {
+    ~FileOutputStream() override {
         ASSERT(!fOpen);
     }