mirror of
https://github.com/dlang-community/dfmt.git
synced 2025-04-26 13:19:58 +03:00
7 lines
160 B
Text
7 lines
160 B
Text
void presumed(out uint column) @trusted
|
|
{
|
|
CXString cxstring;
|
|
|
|
clang_getPresumedLocation(cx, &cxstring, &line, &column);
|
|
filename = toD(cxstring);
|
|
}
|