From 738fef6c27a63b0293bc28e94dbf20310ee7ff16 Mon Sep 17 00:00:00 2001 From: amai2012 Date: Sat, 12 Jan 2019 21:51:39 +0100 Subject: [PATCH] Run astyle --- test/testclass.cpp | 12 ++++++------ test/testcondition.cpp | 6 +++--- test/testnullpointer.cpp | 12 ++++++------ test/testvalueflow.cpp | 8 ++++---- 4 files changed, 19 insertions(+), 19 deletions(-) diff --git a/test/testclass.cpp b/test/testclass.cpp index c22f84cff..40dc0321c 100644 --- a/test/testclass.cpp +++ b/test/testclass.cpp @@ -41,12 +41,12 @@ private: // Load std.cfg configuration { const char xmldata[] = "\n" - "\n" - " \n" - " malloc\n" - " free\n" - " \n" - ""; + "\n" + " \n" + " malloc\n" + " free\n" + " \n" + ""; tinyxml2::XMLDocument doc; doc.Parse(xmldata, sizeof(xmldata)); settings0.library.load(doc); diff --git a/test/testcondition.cpp b/test/testcondition.cpp index 8f8226e66..a63753f8e 100644 --- a/test/testcondition.cpp +++ b/test/testcondition.cpp @@ -44,9 +44,9 @@ private: settings0.addEnabled("warning"); const char cfg[] = "\n" - "\n" - " \n" - ""; + "\n" + " \n" + ""; tinyxml2::XMLDocument xmldoc; xmldoc.Parse(cfg, sizeof(cfg)); settings1.addEnabled("style"); diff --git a/test/testnullpointer.cpp b/test/testnullpointer.cpp index 1d2de94b0..301275548 100644 --- a/test/testnullpointer.cpp +++ b/test/testnullpointer.cpp @@ -43,12 +43,12 @@ private: // Load std.cfg configuration { const char xmldata[] = "\n" - "\n" - " \n" - " \n" - " \n" - " \n" - ""; + "\n" + " \n" + " \n" + " \n" + " \n" + ""; tinyxml2::XMLDocument doc; doc.Parse(xmldata, sizeof(xmldata)); settings.library.load(doc); diff --git a/test/testvalueflow.cpp b/test/testvalueflow.cpp index 22ee675e9..3abcbba2f 100644 --- a/test/testvalueflow.cpp +++ b/test/testvalueflow.cpp @@ -44,10 +44,10 @@ private: void run() OVERRIDE { // strcpy, abort cfg const char cfg[] = "\n" - "\n" - " \n" - " true \n" // abort is a noreturn function - ""; + "\n" + " \n" + " true \n" // abort is a noreturn function + ""; settings.library.loadxmldata(cfg, sizeof(cfg)); TEST_CASE(valueFlowNumber);