Windows compatibility

This commit is contained in:
Karroffel
2017-03-15 23:19:58 +01:00
parent bce9ac109d
commit 8d63048c6d
35 changed files with 259 additions and 43 deletions

View File

@@ -120,6 +120,11 @@ const wchar_t *String::c_string() const
}
String operator +(const char *a, const String& b)
{
return String(a) + b;
}
}