From 1d3d18a96988eb091b207103f18c9fbba505013a Mon Sep 17 00:00:00 2001 From: Alessandro Portale Date: Mon, 14 Jan 2019 01:40:53 +0100 Subject: CppTools: modernize Change-Id: Iaf02e4d026f1ac8b216833d83cd7a735e21ff60a Reviewed-by: Nikolai Kosjar Reviewed-by: Orgad Shaneh --- src/plugins/cpptools/cpppointerdeclarationformatter_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/plugins/cpptools/cpppointerdeclarationformatter_test.cpp') diff --git a/src/plugins/cpptools/cpppointerdeclarationformatter_test.cpp b/src/plugins/cpptools/cpppointerdeclarationformatter_test.cpp index 405967b062..f412c9ab69 100644 --- a/src/plugins/cpptools/cpppointerdeclarationformatter_test.cpp +++ b/src/plugins/cpptools/cpppointerdeclarationformatter_test.cpp @@ -91,7 +91,7 @@ public: // Preprocess source Environment env; - Preprocessor preprocess(0, &env); + Preprocessor preprocess(nullptr, &env); const QByteArray preprocessedSource = preprocess.run(filePath, sourceWithoutCursorMarker); Document::Ptr document = Document::create(filePath); @@ -122,7 +122,7 @@ public: Overview overview; overview.showReturnTypes = true; overview.showArgumentNames = true; - overview.starBindFlags = Overview::StarBindFlags(0); + overview.starBindFlags = Overview::StarBindFlags(nullptr); // Run the formatter PointerDeclarationFormatter formatter(cppRefactoringFile, overview, cursorHandling); -- cgit v1.2.1