From 8135983b5841dc4eb377156623cd5833d8316ae6 Mon Sep 17 00:00:00 2001 From: triton Date: Sun, 8 Dec 2013 18:24:10 +0000 Subject: [PATCH] Formatting fixes. --- tests/Basic/Basic.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/Basic/Basic.h b/tests/Basic/Basic.h index e9e73af9..2fe34d12 100644 --- a/tests/Basic/Basic.h +++ b/tests/Basic/Basic.h @@ -172,13 +172,15 @@ struct DLL_API DefaultParameters template class Base { - // methods within Base can use template to access members of Derived - Derived* create() { return new Derived(); } + // methods within Base can use template to access members of Derived + Derived* create() { return new Derived(); } }; + class Derived : public Base { }; +// Tests the MoveFunctionToClassPass class DLL_API basic {