CppEditor: Code cosmetics

Amends 48169d7724
More uniform indentation. And remove an unneeded class declaration.

Change-Id: I6d09dc40ccde45ace066aee1968a89fd5325356b
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
hjk
2025-04-11 12:46:49 +02:00
parent 48169d7724
commit bb673a66f2

View File

@@ -19,7 +19,6 @@
namespace CppEditor {
namespace Internal {
class CppQuickFixInterface;
class CppQuickFixOperation
: public TextEditor::QuickFixOperation,
@@ -114,5 +113,6 @@ private:
#define REGISTER_QUICKFIX_FACTORY_WITH_STANDARD_TEST(Factory) \
CppQuickFixFactory::registerFactoryWithStandardTest<Factory, Factory##Test>()
#else
#define REGISTER_QUICKFIX_FACTORY_WITH_STANDARD_TEST(Factory) CppQuickFixFactory::registerFactory<Factory>()
#define REGISTER_QUICKFIX_FACTORY_WITH_STANDARD_TEST(Factory) \
CppQuickFixFactory::registerFactory<Factory>()
#endif