From b06ec302d1051843228464656d3021aeec45eb07 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 11 Sep 2014 13:00:40 -0400 Subject: Remove some unnecessary semicolons --- Source/Core/VideoCommon/BPFunctions.h | 2 +- Source/Core/VideoCommon/Debugger.h | 4 ++-- Source/Core/VideoCommon/HiresTextures.h | 2 +- Source/Core/VideoCommon/VertexLoaderManager.h | 2 +- Source/Core/VideoCommon/VertexManagerBase.h | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) (limited to 'Source/Core/VideoCommon') diff --git a/Source/Core/VideoCommon/BPFunctions.h b/Source/Core/VideoCommon/BPFunctions.h index 4a3b25c9de..ff7e928f8a 100644 --- a/Source/Core/VideoCommon/BPFunctions.h +++ b/Source/Core/VideoCommon/BPFunctions.h @@ -30,4 +30,4 @@ void CopyEFB(u32 dstAddr, const EFBRectangle& srcRect, void ClearScreen(const EFBRectangle &rc); void OnPixelFormatChange(); void SetInterlacingMode(const BPCmd &bp); -}; +} diff --git a/Source/Core/VideoCommon/Debugger.h b/Source/Core/VideoCommon/Debugger.h index 894921c744..e7f864652a 100644 --- a/Source/Core/VideoCommon/Debugger.h +++ b/Source/Core/VideoCommon/Debugger.h @@ -12,8 +12,8 @@ public: virtual ~GFXDebuggerBase() {} // if paused, debugging functions can be enabled - virtual void OnPause() {}; - virtual void OnContinue() {}; + virtual void OnPause() {} + virtual void OnContinue() {} void DumpPixelShader(const std::string& path); void DumpVertexShader(const std::string& path); diff --git a/Source/Core/VideoCommon/HiresTextures.h b/Source/Core/VideoCommon/HiresTextures.h index 78b9b14e74..5df71f0fa7 100644 --- a/Source/Core/VideoCommon/HiresTextures.h +++ b/Source/Core/VideoCommon/HiresTextures.h @@ -15,4 +15,4 @@ void Init(const std::string& gameCode); bool HiresTexExists(const std::string& filename); PC_TexFormat GetHiresTex(const std::string& fileName, unsigned int* pWidth, unsigned int* pHeight, unsigned int* required_size, int texformat, unsigned int data_size, u8* data); -}; +} diff --git a/Source/Core/VideoCommon/VertexLoaderManager.h b/Source/Core/VideoCommon/VertexLoaderManager.h index 4177140da8..32a64b6cd8 100644 --- a/Source/Core/VideoCommon/VertexLoaderManager.h +++ b/Source/Core/VideoCommon/VertexLoaderManager.h @@ -24,6 +24,6 @@ namespace VertexLoaderManager void AppendListToString(std::string *dest); NativeVertexFormat* GetCurrentVertexFormat(); -}; +} void RecomputeCachedArraybases(); diff --git a/Source/Core/VideoCommon/VertexManagerBase.h b/Source/Core/VideoCommon/VertexManagerBase.h index c9ee61b777..7852e61f34 100644 --- a/Source/Core/VideoCommon/VertexManagerBase.h +++ b/Source/Core/VideoCommon/VertexManagerBase.h @@ -43,8 +43,8 @@ public: virtual ::NativeVertexFormat* CreateNativeVertexFormat() = 0; static void DoState(PointerWrap& p); - virtual void CreateDeviceObjects(){}; - virtual void DestroyDeviceObjects(){}; + virtual void CreateDeviceObjects(){} + virtual void DestroyDeviceObjects(){} protected: virtual void vDoState(PointerWrap& p) { } -- cgit v1.2.3