dummyunit
dummyunit
When doing a jump for which only one match is found, `feedkeys()` is used to execute the `tag` command. This results in such command being recorded in the command history,...
Preprocessing (in C++17 mode) of code like this: ```cpp #if __has_include() #endif ``` results in an error: ``` /tmp/fail.cpp:1: syntax error: failed to evaluate #if condition ``` This happens regardless...
Preprocessing of this code with simplecpp: ```cpp #define CAT(a, b) CAT2(a, b) #define CAT2(a, b) a ## b #define FOO x #define BAR() CAT(F, OO) #define BAZ CAT(B, AR)() BAZ...
Move support for `signal_type` added in #19 has a major flaw - the signal created by a move constructor/assignment keeps a pointer (`_shared_disconnector`) to `_disconnector` stored inside the moved from...