Is it a good way to concatenate string literals as it's done in the following snippet?
outputStream << "[" "]";
I am actually a bit surprised that this statement compiles and works as expected.
Is it a good way to concatenate string literals as it's done in the following snippet?
outputStream << "[" "]";
I am actually a bit surprised that this statement compiles and works as expected.