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:
parent
2eb518ed5c
commit
235544fd27
1 changed files with 2 additions and 2 deletions
|
|
@ -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())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue