mirror of https://github.com/buggins/dlangui.git
Fix compilation for DMD 2.090
This commit is contained in:
parent
1822edb88d
commit
cc66329d48
|
@ -489,7 +489,7 @@ final class Setting {
|
|||
|
||||
|
||||
/// read as string value
|
||||
@property inout(string) str() inout {
|
||||
@property string str() {
|
||||
final switch(_type) with(SettingType) {
|
||||
case STRING:
|
||||
return _store.str;
|
||||
|
@ -510,7 +510,7 @@ final class Setting {
|
|||
}
|
||||
}
|
||||
/// read as string value
|
||||
inout(string) strDef(string defValue) inout {
|
||||
inout (string) strDef(inout (string) defValue) {
|
||||
final switch(_type) with(SettingType) {
|
||||
case STRING:
|
||||
return _store.str;
|
||||
|
@ -2313,5 +2313,3 @@ final class Setting {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue