Alexey Romanov
Alexey Romanov
When using [`-Zsanitizer=`](https://doc.rust-lang.org/nightly/unstable-book/compiler-flags/sanitizer.html) I think it might be a good idea to pass corresponding option to the C/C++ compiler as well (if it supports it). It's easy to check if...
It would be nice to specify the standard explicitly as a method on `Build`, e.g. `Build::new().standard("c++14")`. This abstracts from difference between GCC/Clang `-std=` and MSVC `/std:`. Questions to answer: 1....
In #616 I've noticed `//` is used for the comments; using `///` instead will allow Doxygen to recognize them as doc comments.
Review EDoc and add it to Wiki. Use https://github.com/esl/edown
1. `moredelims` to highlight error messages in red completely. https://tex.stackexchange.com/questions/8384/how-to-make-overlay-still-work-inside-lstlisting-environment/18266, https://tex.stackexchange.com/questions/236311/uncover-listings-code-blocks/236339 2. Remove `Int` and the like from keywords.
I've only discovered that artifactId is now thrift-maven-plugin instead of maven-thrift-plugin by looking at pom.xml (while trying to find out what is the latest version, which also could usefully be...
When using RapidCheck, I'd like the option to write to [`RC_LOG()`](https://github.com/emil-e/rapidcheck/blob/master/doc/debugging.md#logging) instead of `std::cerr`: > Since the property function may be called many times, using classic debugging techniques such as...
I found [a Reddit comment](https://www.reddit.com/r/cpp/comments/c2ysa7/a_dbg_macro_for_c/ernk8cy/) saying > If you want to format the output specifically for dbg(), specialize dbg_macro::prettyPrint If this is officially supported, can you add it to README?...
Is it possible to specify multiple warts at once in plugin options or the command line? Or should something similar to `Unsafe` (with a different list) be used instead? In...