From 34ace7c96639c7fab48c57a3f60f59ee3b8a8d57 Mon Sep 17 00:00:00 2001 From: Joao Matos Date: Mon, 6 Feb 2017 16:30:49 +0000 Subject: [PATCH] Fix indentation for some test cases. --- tests/Common/Common.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/Common/Common.h b/tests/Common/Common.h index 0e5ce3bd..3f9e53f3 100644 --- a/tests/Common/Common.h +++ b/tests/Common/Common.h @@ -383,13 +383,13 @@ struct DLL_API TestStaticClass { static int Add(int a, int b); - static int GetOneTwoThree(); + static int GetOneTwoThree(); protected: - static int _Mult(int a, int b); + static int _Mult(int a, int b); - static int GetFourFiveSix(); + static int GetFourFiveSix(); private: TestStaticClass(); @@ -416,9 +416,9 @@ int TestStaticClassDerived::Foo() { return 0; } class DLL_API TestNotStaticClass { public: - static TestNotStaticClass StaticFunction(); + static TestNotStaticClass StaticFunction(); private: - TestNotStaticClass(); + TestNotStaticClass(); }; TestNotStaticClass::TestNotStaticClass() @@ -427,7 +427,7 @@ TestNotStaticClass::TestNotStaticClass() TestNotStaticClass TestNotStaticClass::StaticFunction() { - return TestNotStaticClass(); + return TestNotStaticClass(); } class HasIgnoredField