Fix compiler errors on DMD 2.063.2.
1 parent 35b4042 commit 6ca37f86a39c2dea546ae451005255dbe89fa2ef
@Sönke Ludwig Sönke Ludwig authored on 20 Dec 2013
Showing 1 changed file
View
4
source/dub/project.d
/// which can be accessed by all users of the system.
systemWide
}
 
package void processVars(ref BuildSettings dst, string project_path, BuildSettings settings, bool include_target_settings = false)
void processVars(ref BuildSettings dst, string project_path, BuildSettings settings, bool include_target_settings = false)
{
dst.addDFlags(processVars(project_path, settings.dflags));
dst.addLFlags(processVars(project_path, settings.lflags));
dst.addLibs(processVars(project_path, settings.libs));
{
return ch >= 'A' && ch <= 'Z' || ch >= 'a' && ch <= 'z' || ch >= '0' && ch <= '9' || ch == '_';
}
 
package string stripDlangSpecialChars(string s)
string stripDlangSpecialChars(string s)
{
import std.array;
import std.uni;
auto ret = appender!string();