dawn: Remove semicolons.

A cleanup needed for turning on -Wextra-semi in Chromium builds.

Bug: chromium:926235
Change-Id: I3d2b517ad21dfae9e7dc06613a7fe3e98d783b2a
Reviewed-on: https://dawn-review.googlesource.com/c/4841
Commit-Queue: Corentin Wallez <cwallez@chromium.org>
Reviewed-by: Corentin Wallez <cwallez@chromium.org>
This commit is contained in:
Nico Weber 2019-02-21 14:39:01 +00:00 committed by Commit Bot service account
parent 56006dcf65
commit e3b27e6661
3 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@ class DevNull : public dawn_wire::CommandSerializer {
} }
bool Flush() override { bool Flush() override {
return true; return true;
}; }
private: private:
std::vector<char> buf; std::vector<char> buf;

View File

@ -467,4 +467,4 @@ TEST_P(BindGroupTests, DrawTwiceInSamePipelineWithFourBindGroupSets)
EXPECT_PIXEL_RGBA8_EQ(notFilled, renderPass.color, max, max); EXPECT_PIXEL_RGBA8_EQ(notFilled, renderPass.color, max, max);
} }
DAWN_INSTANTIATE_TEST(BindGroupTests, D3D12Backend, MetalBackend, OpenGLBackend, VulkanBackend); DAWN_INSTANTIATE_TEST(BindGroupTests, D3D12Backend, MetalBackend, OpenGLBackend, VulkanBackend)

View File

@ -21,7 +21,7 @@
namespace dawn_native { namespace dawn_native {
class Instance; class Instance;
}; }
#define ASSERT_DEVICE_ERROR(statement) \ #define ASSERT_DEVICE_ERROR(statement) \
StartExpectDeviceError(); \ StartExpectDeviceError(); \