Open kadler15 opened 1 year ago
The use of std::basic_string requires <string>.
std::basic_string
<string>
This issue was causing GetNetPassPhrase.cpp compilation to fail for me.
We don't see the same failures elsewhere only because <string> is included indirectly in other files: os.h -> log.h -> <string>
os.h
log.h
The use of
std::basic_string
requires<string>
.This issue was causing GetNetPassPhrase.cpp compilation to fail for me.
We don't see the same failures elsewhere only because
<string>
is included indirectly in other files:os.h
->log.h
-><string>