Tomoya Tanjo

Results 26 comments of Tomoya Tanjo

I found a workaround for this issue. When I add the following code into `foo/bar.d`, `dub` can generate `__test_library__` and the test finishes correctly. ``` d: version(D_Coverage) { version(unittest) {...

Sorry for late reply. There are mainly two ways to make `TeX-run-latexmk` (it is a function called in C-c C-c `LatexMk`) by default: - Make `LatexMk` default by taking care...

Currently LaTeXMk does not use `TeX-PDF-from-DVI`. Please configure your `.latexmkrc` to use `dvips` and `ps2pdf`.

Done! I used `CPATH` rather than using `--include-path` because the headers added by the latter are not treated as system headers by `clang.systemPaths`. I added a fallback for preprocessors that...

I accidentally closed this issue but reopened it.

I have a similar issue with the following instructions: ```console $ ls issue307.dpp $ cat issue307.dpp #include uint32_t test; void main(){} $ docker run --rm -it -v $PWD:/workdir -w /workdir...

> Biggest blockers to this appear to be std.regex and a few of the data structures (Queue, Array, etc?) used throughout D-YAML. Now one blocker due to `std.regex` is solved...

Thank you for your information! I missed the other places that are blocked by `std.regex` because I checked CTFEability only with the following code. ```dlang unittest { import dyaml.loader; enum...

FYI: I dived into `std.regex` a little. I found that most of the blockers to make `std.regex` CTFEable can be solved by using `__ctfe` but unsafe casts and impure functions...