mirror of https://github.com/buggins/dlangide.git
Cast loggers to shared for now to make everying build
This commit is contained in:
parent
72ea89b6ec
commit
2b2d068692
|
@ -28,15 +28,15 @@ extern (C) int UIAppMain(string[] args) {
|
|||
|
||||
version(Windows) {
|
||||
debug {
|
||||
sharedLog = new FileLogger("dcd.log");
|
||||
sharedLog = cast(shared)new FileLogger("dcd.log");
|
||||
} else {
|
||||
sharedLog = new NullLogger();
|
||||
sharedLog = cast(shared)new NullLogger();
|
||||
}
|
||||
} else {
|
||||
debug {
|
||||
//sharedLog = new FileLogger("dcd.log");
|
||||
} else {
|
||||
sharedLog = new NullLogger();
|
||||
sharedLog = cast(shared)new NullLogger();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue