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

New class StringRef, to improve performance in function calls that can take either a String or a raw string literal. Modified a few other classes to take advantage of this.

This commit is contained in:
jules 2013-09-09 20:07:17 +01:00
parent 83aaaa9459
commit fecba9c31c
51 changed files with 550 additions and 382 deletions

View file

@ -407,7 +407,7 @@ bool LibraryModule::isVSTPluginHost (const Project& project) const { return get
File LibraryModule::getInclude (const File& folder) const
{
return folder.getChildFile (moduleInfo ["include"]);
return folder.getChildFile (moduleInfo ["include"].toString());
}
RelativePath LibraryModule::getModuleRelativeToProject (ProjectExporter& exporter) const