Bastiaan Veelo

Results 12 issues of Bastiaan Veelo

In the example https://github.com/atilaneves/dpp#example, try redefining the macro as ```c #define FOO_ID(x) (x*3) \ + 1 ```

bug
preprocessor

Similar to https://github.com/dlang-community/D-Scanner/pull/857.

Using `--max_line_length=80`, this code: ```d /* 123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890 10 20 30 40 50 60 70 80 */ import std.stdio : readln, readln, /* commentA */ readln, readln, readln, readln, readln, readln,...

bug

When the frontend version is at least 2.097, which deprecated the `body` keyword, require a newer `dscanner` version. Fixes #2241.

### System information - **dub version**: HEAD - **OS Platform and distribution**: Windows 10 - **compiler version** v2.098.0 ### Bug Description Since https://github.com/dlang/dub/pull/2217/commits/cb290e18465101bb1bb4cbeb190559bfb99c72d4 in #2217 `$PACKAGE_DIR` inside `preBuildCommands` of a...

bug
regression

For example, https://dlang.org/library/core/time/msecs.html displays wrongly "alias msecs ;" versus https://dlang.org/phobos/core_time.html#.msecs displays correctly "alias msecs = dur!"msecs".dur;" Phobos doc issue: https://issues.dlang.org/show_bug.cgi?id=19677

Without the cast recent compilers complain with ``` Error: none of the overloads of `sharedLog` are callable using argument types `(FileLogger)` Candidates are: `std.logger.core.sharedLog()` `std.logger.core.sharedLog(shared(Logger) logger)` ```

`.\dub.json`: ```json { "name": "mypkg", "targetType": "none", "subPackages": [ "sub" ], "dependencies": { "mypkg:sub": "*" } } ``` `.\sub\dub.json`: ```json { "name": "sub", "targetType": "executable", "configurations": [ { "name": "special",...