Dangerous int-to-string conversions -- Andrzej Krzemieński
	Note that the article doesn't mention 
to_string, which is the preferred C++11 way to convert an int to a string. But it does point out an issue -- you can assign an int to a string, including by accident.
Dangerous int-to-string conversions
by Andrzej Krzemieński
From the article:
And now, because
intis implicitly convertible tochar, our unexpected conversion frominttostd::string‘works’ (under some definition of ‘work’)...
