1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Projucer: Tidy up unnecessary enum qualification

This commit is contained in:
reuk 2023-11-29 16:26:29 +00:00
parent 2eb518ed5c
commit 235544fd27
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C

View file

@ -128,7 +128,7 @@ public:
class MakefileTarget final : public build_tools::ProjectType::Target
{
public:
MakefileTarget (build_tools::ProjectType::Target::Type targetType, const MakefileProjectExporter& exporter)
MakefileTarget (Type targetType, const MakefileProjectExporter& exporter)
: Target (targetType), owner (exporter)
{}
@ -163,7 +163,7 @@ public:
StringPairArray getDefines (const BuildConfiguration& config) const
{
StringPairArray result;
auto commonOptionKeys = owner.getAllPreprocessorDefs (config, build_tools::ProjectType::Target::unspecified).getAllKeys();
auto commonOptionKeys = owner.getAllPreprocessorDefs (config, unspecified).getAllKeys();
auto targetSpecific = owner.getAllPreprocessorDefs (config, type);
for (auto& key : targetSpecific.getAllKeys())