From d9698451f62ce970415a89287106b6b7a0a5cbd6 Mon Sep 17 00:00:00 2001 From: Chuck Walbourn Date: Fri, 23 Feb 2018 22:43:00 -0800 Subject: [PATCH] Fix minor namespace syntax issue --- Inc/SimpleMath.h | 4 ++-- Src/vbo.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Inc/SimpleMath.h b/Inc/SimpleMath.h index de46faf..a494f2e 100644 --- a/Inc/SimpleMath.h +++ b/Inc/SimpleMath.h @@ -880,9 +880,9 @@ public: #include "SimpleMath.inl" -}; // namespace SimpleMath +} // namespace SimpleMath -}; // namespace DirectX +} // namespace DirectX //------------------------------------------------------------------------------ // Support for SimpleMath and Standard C++ Library containers diff --git a/Src/vbo.h b/Src/vbo.h index 4c78a2c..6b8afc6 100644 --- a/Src/vbo.h +++ b/Src/vbo.h @@ -29,7 +29,7 @@ namespace VBO #pragma pack(pop) -}; // namespace +} // namespace static_assert(sizeof(VBO::header_t) == 8, "VBO header size mismatch");