1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00

Introjucer: avoided some MSVC warnings.

This commit is contained in:
jules 2013-09-16 18:12:27 +01:00
parent ef058dc285
commit 3ab3c79589
2 changed files with 8 additions and 0 deletions

View file

@ -794,6 +794,11 @@ EnabledModuleList::EnabledModuleList (Project& p, const ValueTree& s)
{
}
EnabledModuleList::EnabledModuleList (const EnabledModuleList& other)
: project (other.project), state (other.state)
{
}
const Identifier EnabledModuleList::modulesGroupTag ("MODULES");
const Identifier EnabledModuleList::moduleTag ("MODULE");