Merge pull request #601 from NotSpooky/patch-1

Fix compilation for DMD 2.090
This commit is contained in:
Vadim Lopatin 2020-07-28 12:09:53 +03:00 committed by GitHub
commit 1022a8384d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 5 deletions

View File

@ -489,7 +489,7 @@ final class Setting {
/// read as string value /// read as string value
@property inout(string) str() inout { @property string str() {
final switch(_type) with(SettingType) { final switch(_type) with(SettingType) {
case STRING: case STRING:
return _store.str; return _store.str;
@ -510,7 +510,7 @@ final class Setting {
} }
} }
/// read as string value /// read as string value
inout(string) strDef(string defValue) inout { inout (string) strDef(inout (string) defValue) {
final switch(_type) with(SettingType) { final switch(_type) with(SettingType) {
case STRING: case STRING:
return _store.str; return _store.str;
@ -2313,5 +2313,3 @@ final class Setting {
} }
} }
} }

View File

@ -280,7 +280,7 @@ class Console {
break; break;
} }
if (readBufPos > 0 && isSequenceCompleted()) { if (readBufPos > 0 && isSequenceCompleted()) {
string s = readBuf[0 .. readBufPos].dup; string s = readBuf[0 .. readBufPos].idup;
readBufPos = 0; readBufPos = 0;
return s; return s;
} }