Info: Use nl rather than "\n..." to ensure region-prefixed printing

This commit is contained in:
Henry Weller
2023-04-05 17:14:24 +01:00
parent 3229b0e645
commit 05ffb6a6ff
11 changed files with 19 additions and 18 deletions

View File

@ -43,7 +43,7 @@ int main(int argc, char *argv[])
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Info<< "\nEnd\n" << endl;
Info<< nl << "End" << nl << endl;
return 0;
}