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) {
|
version(Windows) {
|
||||||
debug {
|
debug {
|
||||||
sharedLog = new FileLogger("dcd.log");
|
sharedLog = cast(shared)new FileLogger("dcd.log");
|
||||||
} else {
|
} else {
|
||||||
sharedLog = new NullLogger();
|
sharedLog = cast(shared)new NullLogger();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
debug {
|
debug {
|
||||||
//sharedLog = new FileLogger("dcd.log");
|
//sharedLog = new FileLogger("dcd.log");
|
||||||
} else {
|
} else {
|
||||||
sharedLog = new NullLogger();
|
sharedLog = cast(shared)new NullLogger();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue