Quiet annoying VC++ warning C4819: The file contains a character that cannot be represented in the current code page.

This commit is contained in:
Tamito Kajiyama
2013-08-24 17:36:45 +00:00
parent 09a52f18b6
commit 4ece675781

View File

@@ -232,7 +232,7 @@ public:
// operator corresponding to i++, i.e. which returns the value *and then* increments it.
// That's why we store the value in a temp.
virtual Self operator++(int) // opérateur correspondant à i++
virtual Self operator++(int)
{
Self tmp = *this;
increment();