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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2013-08-24 21:36:45 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2013-08-24 21:36:45 +0400
commit4ece67578188d28e6e922434156440fa6b32a63e (patch)
tree2f2130e5723659de9fb26020907c41532ec45d69 /source/blender/freestyle
parent09a52f18b6d8bd77cbffd746f72e866e1740505f (diff)
Quiet annoying VC++ warning C4819: The file contains a character that cannot be represented in the current code page.
Diffstat (limited to 'source/blender/freestyle')
-rw-r--r--source/blender/freestyle/intern/view_map/ViewMapAdvancedIterators.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/freestyle/intern/view_map/ViewMapAdvancedIterators.h b/source/blender/freestyle/intern/view_map/ViewMapAdvancedIterators.h
index 01e93ba77c7..a8c046c4dc1 100644
--- a/source/blender/freestyle/intern/view_map/ViewMapAdvancedIterators.h
+++ b/source/blender/freestyle/intern/view_map/ViewMapAdvancedIterators.h
@@ -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();