I'm compiling with latest VC, using C++20, and I'm seeing errors in TraceLoggingDynamic.h due to some of the SAL annotations, e.g.:
void AddBytes(
_In_bytecount_(cb) void const* p,
unsigned cb)
I think this should be _In_reads_bytes_(cb) based on SAL 2 syntax.
I'm compiling with latest VC, using C++20, and I'm seeing errors in TraceLoggingDynamic.h due to some of the SAL annotations, e.g.:
I think this should be
_In_reads_bytes_(cb)based on SAL 2 syntax.