Closed
Description
As of Visual Studio 17.7, the <print>
header is available (under /std:c++latest
) so I think we should include it in cpputil.h
w/ include guards. This simple patch should be enough:
// cpp2util.h around Line 150
#include <ostream>
+ #ifdef __cpp_lib_print
+ #include <print>
+ #endif
#include <queue>
Will your feature suggestion eliminate X% of security vulnerabilities of a given kind in current C++ code? N/A
Will your feature suggestion automate or eliminate X% of current C++ guidance literature? N/A