mirror of https://github.com/buggins/dlangide.git
close disambiguation
The implicit close(masterfd) here actually calls dlangide.ui.terminal.TerminalDevice.close, which is not callable using argument types (int) and somehow leads to a compile failure.
This commit is contained in:
parent
444db7e37d
commit
72c9be2d5b
|
@ -795,8 +795,8 @@ class TerminalDevice : Thread {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (masterfd && masterfd != -1) {
|
if (masterfd && masterfd != -1) {
|
||||||
import core.sys.posix.unistd;
|
import core.sys.posix.unistd: close_=close;
|
||||||
close(masterfd);
|
close_(masterfd);
|
||||||
masterfd = 0;
|
masterfd = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue