[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [59485] trunk/blender/source/blender/ freestyle/intern/view_map/ViewMapAdvancedIterators.h: Quiet annoying VC++ warning C4819: The file contains a character that cannot be represented in the current code page .

Tamito Kajiyama rd6t-kjym at asahi-net.or.jp
Sat Aug 24 19:36:45 CEST 2013


Revision: 59485
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=59485
Author:   kjym3
Date:     2013-08-24 17:36:45 +0000 (Sat, 24 Aug 2013)
Log Message:
-----------
Quiet annoying VC++ warning C4819: The file contains a character that cannot be represented in the current code page.

Modified Paths:
--------------
    trunk/blender/source/blender/freestyle/intern/view_map/ViewMapAdvancedIterators.h

Modified: trunk/blender/source/blender/freestyle/intern/view_map/ViewMapAdvancedIterators.h
===================================================================
--- trunk/blender/source/blender/freestyle/intern/view_map/ViewMapAdvancedIterators.h	2013-08-24 17:33:47 UTC (rev 59484)
+++ trunk/blender/source/blender/freestyle/intern/view_map/ViewMapAdvancedIterators.h	2013-08-24 17:36:45 UTC (rev 59485)
@@ -232,7 +232,7 @@
 
 	// 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();




More information about the Bf-blender-cvs mailing list