David Windehem
Results
2
issues of
David Windehem
The `-Wlifetime` project is intriguing, but there are still too many false positives in real-world projects I have tested it on. One thing I quite haven't understood is how to...
The following code should be considered correct (if you want to print the string "123"): ```C++ std::vector z { 1, 2, 3 }; std::copy(z.begin(), z.end(), std::ostream_iterator(std::cout)); ``` However, I get...