2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-09-01 14:37:25 +00:00

add newline to gdt unit tests prints

This commit is contained in:
Jan
2021-03-06 14:24:16 +01:00
parent 603994ce61
commit 78107b74e0

View File

@@ -268,7 +268,7 @@ namespace obj::gdt
std::stringstream ss;
GdtOutputStream::WriteGdt(gdt, ss);
std::cout << ss.str();
std::cout << ss.str() << std::endl;
Gdt gdt2;
GdtReader reader(ss);
@@ -316,7 +316,7 @@ namespace obj::gdt
std::stringstream ss;
GdtOutputStream::WriteGdt(gdt, ss);
std::cout << ss.str();
std::cout << ss.str() << std::endl;
Gdt gdt2;
GdtReader reader(ss);