Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2012-12-26 20:42:47 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-12-26 20:42:47 +0400
commit9fe9c1d6436e400217fdfd8999117a4719efdf68 (patch)
tree50d1e1d43f54830927b483d954c50d6206d0a39b /source/blender/freestyle/intern/stroke/StrokeAdvancedIterators.h
parent4c8c24b3239c687776e4043387d35825be33934f (diff)
Fix encoding (from ISO 8859-15 to utf8).
Diffstat (limited to 'source/blender/freestyle/intern/stroke/StrokeAdvancedIterators.h')
-rw-r--r--source/blender/freestyle/intern/stroke/StrokeAdvancedIterators.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/freestyle/intern/stroke/StrokeAdvancedIterators.h b/source/blender/freestyle/intern/stroke/StrokeAdvancedIterators.h
index 279a0b12089..2768a2fd794 100644
--- a/source/blender/freestyle/intern/stroke/StrokeAdvancedIterators.h
+++ b/source/blender/freestyle/intern/stroke/StrokeAdvancedIterators.h
@@ -96,7 +96,7 @@ namespace StrokeInternal {
++_it;
return *(this);
}
- inline Self operator++(int) // opérateur correspondant à 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érateur correspondant à i++
- { // c.a.d qui renvoie la valeur *puis* incré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;