Fix encoding (from ISO 8859-15 to utf8).
This commit is contained in:
@@ -206,8 +206,8 @@ namespace CurveInternal {
|
||||
increment();
|
||||
return *this;
|
||||
}
|
||||
inline Self operator++(int) // op<EFBFBD>rateur correspondant <EFBFBD> i++
|
||||
{ // c.a.d qui renvoie la valeur *puis* incr<EFBFBD>mente.
|
||||
inline Self operator++(int) // opérateur correspondant à i++
|
||||
{ // c.a.d qui renvoie la valeur *puis* incrémente.
|
||||
Self tmp = *this; // C'est pour cela qu'on stocke la valeur
|
||||
increment(); // dans un temporaire.
|
||||
return tmp;
|
||||
@@ -217,8 +217,8 @@ namespace CurveInternal {
|
||||
decrement();
|
||||
return *this;
|
||||
}
|
||||
inline Self operator--(int) // op<EFBFBD>rateur correspondant <EFBFBD> i++
|
||||
{ // c.a.d qui renvoie la valeur *puis* incr<EFBFBD>mente.
|
||||
inline Self operator--(int) // opérateur correspondant à i++
|
||||
{ // c.a.d qui renvoie la valeur *puis* incrémente.
|
||||
Self tmp = *this; // C'est pour cela qu'on stocke la valeur
|
||||
decrement(); // dans un temporaire.
|
||||
return tmp;
|
||||
|
||||
@@ -96,7 +96,7 @@ namespace StrokeInternal {
|
||||
++_it;
|
||||
return *(this);
|
||||
}
|
||||
inline Self operator++(int) // op<EFBFBD>rateur correspondant <EFBFBD> i++
|
||||
inline Self operator++(int) // opérateur correspondant à i++
|
||||
{
|
||||
Self tmp = *this; // C'est pour cela qu'on stocke la valeur
|
||||
++_it; // dans un temporaire.
|
||||
@@ -107,8 +107,8 @@ namespace StrokeInternal {
|
||||
--_it;
|
||||
return *(this);
|
||||
}
|
||||
inline Self operator--(int) // op<EFBFBD>rateur correspondant <EFBFBD> i++
|
||||
{ // c.a.d qui renvoie la valeur *puis* incr<EFBFBD>mente.
|
||||
inline Self operator--(int) // opérateur correspondant à i++
|
||||
{ // c.a.d qui renvoie la valeur *puis* incrémente.
|
||||
Self tmp = *this; // C'est pour cela qu'on stocke la valeur
|
||||
--_it; // dans un temporaire.
|
||||
return tmp;
|
||||
|
||||
Reference in New Issue
Block a user