From 38da38f658df5da996af56f960368da9d645cdff Mon Sep 17 00:00:00 2001 From: ed Date: Tue, 19 Feb 2019 12:21:20 +0000 Subject: [PATCH] Projucer: Minor formatting tweaks in the makefile exporter code --- .../Source/ProjectSaving/jucer_ProjectExport_Make.h | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Make.h b/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Make.h index a273060fbb..ac658e3678 100644 --- a/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Make.h +++ b/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Make.h @@ -48,8 +48,8 @@ protected: addGCCOptimisationProperty (props); props.add (new ChoicePropertyComponent (architectureTypeValue, "Architecture", - { "", "Native", "32-bit (-m32)", "64-bit (-m64)", "ARM v6", "ARM v7" }, - { { String() }, "-march=native", "-m32", "-m64", "-march=armv6", "-march=armv7" }), + { "", "Native", "32-bit (-m32)", "64-bit (-m64)", "ARM v6", "ARM v7" }, + { { String() }, "-march=native", "-m32", "-m64", "-march=armv6", "-march=armv7" }), "Specifies the 32/64-bit architecture to use."); } @@ -133,10 +133,8 @@ public: StringArray getTargetSettings (const MakeBuildConfiguration& config) const { - if (type == AggregateTarget) - // the aggregate target should not specify any settings at all! - // it just defines dependencies on the other targets. - return {}; + if (type == AggregateTarget) // the aggregate target should not specify any settings at all! + return {}; // it just defines dependencies on the other targets. StringArray defines; auto defs = getDefines (config);