1
0
Fork 0
mirror of https://github.com/TheLartians/ModernCppStarter.git synced 2025-08-30 21:51:12 +02:00

replace <sstream> with <ostream>

This commit is contained in:
cvelth 2020-04-23 19:37:23 +03:00
parent 716a30d90b
commit df1d9bd86a

View file

@ -3,7 +3,7 @@
#if defined(_WIN32) || defined(WIN32)
// apparently this is required to compile in MSVC++
# include <sstream>
# include <ostream>
#endif
TEST_CASE("Greeter") {