From f4d80bd8a5bf9d90851d0cc44a90108e7beda57c Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 4 May 2014 00:24:21 -0400 Subject: [PATCH] Move the #pragma once header guard before the includes in Statistics.h in VideoCommon. --- Source/Core/VideoCommon/Statistics.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/VideoCommon/Statistics.h b/Source/Core/VideoCommon/Statistics.h index 989549e6ce..ccd5936d84 100644 --- a/Source/Core/VideoCommon/Statistics.h +++ b/Source/Core/VideoCommon/Statistics.h @@ -2,13 +2,13 @@ // Licensed under GPLv2 // Refer to the license.txt file included. +#pragma once + #include #include "Common/CommonTypes.h" #include "VideoCommon/VideoCommon.h" -#pragma once - struct Statistics { int numPixelShadersCreated;