aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/gpu/vk
diff options
context:
space:
mode:
authorGravatar Mike Klein <mtklein@chromium.org>2016-09-27 10:52:35 -0400
committerGravatar Mike Klein <mtklein@chromium.org>2016-09-27 15:08:22 +0000
commit6ad6ba44ce3e13f46ae0e0b0c5459364d6c470f8 (patch)
tree1eec3d9e3cf344f29aa9bf3a5235bec069ca05a6 /tools/gpu/vk
parentbc9b2963bf9e39c47ae5c3ab94b8503b476f4f0e (diff)
remove more stray semicolons from Vulkan code
BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2707 Change-Id: Idc00efeda2f9901a6f33c987202be2a781b24269 Reviewed-on: https://skia-review.googlesource.com/2707 Reviewed-by: Mike Klein <mtklein@chromium.org>
Diffstat (limited to 'tools/gpu/vk')
-rw-r--r--tools/gpu/vk/VkTestContext.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gpu/vk/VkTestContext.h b/tools/gpu/vk/VkTestContext.h
index afe5cd1199..5c6408a549 100644
--- a/tools/gpu/vk/VkTestContext.h
+++ b/tools/gpu/vk/VkTestContext.h
@@ -24,10 +24,10 @@ public:
bool isValid() const override { return NULL != this->vk(); }
- const GrVkInterface* vk() const { return fVk->fInterface; };
+ const GrVkInterface* vk() const { return fVk->fInterface; }
protected:
- VkTestContext(sk_sp<const GrVkBackendContext> vk) : fVk(std::move(vk)) {};
+ VkTestContext(sk_sp<const GrVkBackendContext> vk) : fVk(std::move(vk)) {}
sk_sp<const GrVkBackendContext> fVk;