Coding away this evening (I realise it's Valentine's Day) and came across something strange...
I have the following line:
std:;cout << freqs[summations[i]] / 1000 * 10 << std::endl;
This compiles. However, if I do this, it will not compile.
std;;cout << freqs[summations[i]] / 1000 * 10 << std::endl;
I don't have any strict properties on in my compile line. However, I wouldn't have thought GCC would allow this to be compiled and output. Why is this?