From 76577b1aecdea1f675847a8d819fe8c958edece5 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Thu, 21 Feb 2019 11:05:21 -0500 Subject: [PATCH] Fix -Wextra-semi warnings in headers used in Chromium --- SPIRV/SpvTools.h | 4 ++-- SPIRV/disassemble.h | 2 +- SPIRV/doc.h | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/SPIRV/SpvTools.h b/SPIRV/SpvTools.h index 08bcf3a2..7e49ae0b 100644 --- a/SPIRV/SpvTools.h +++ b/SPIRV/SpvTools.h @@ -75,6 +75,6 @@ void SpirvToolsLegalize(const glslang::TIntermediate& intermediate, std::vector< #endif -}; // end namespace glslang +} // end namespace glslang -#endif // GLSLANG_SPV_TOOLS_H \ No newline at end of file +#endif // GLSLANG_SPV_TOOLS_H diff --git a/SPIRV/disassemble.h b/SPIRV/disassemble.h index 2a9a89b5..b6a46357 100644 --- a/SPIRV/disassemble.h +++ b/SPIRV/disassemble.h @@ -48,6 +48,6 @@ namespace spv { // disassemble with glslang custom disassembler void Disassemble(std::ostream& out, const std::vector&); -}; // end namespace spv +} // end namespace spv #endif // disassembler_H diff --git a/SPIRV/doc.h b/SPIRV/doc.h index 7d0475d3..293256a2 100644 --- a/SPIRV/doc.h +++ b/SPIRV/doc.h @@ -255,4 +255,4 @@ const char* AccessQualifierString(int attr); void PrintOperands(const OperandParameters& operands, int reservedOperands); -}; // end namespace spv +} // end namespace spv