[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [60377] branches/soc-2013-vse/source/ blender/sequencer/sequencer_types.h: Commited too early

Alexander Kuznetsov kuzsasha at gmail.com
Thu Sep 26 06:26:12 CEST 2013


Revision: 60377
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=60377
Author:   alexk
Date:     2013-09-26 04:26:12 +0000 (Thu, 26 Sep 2013)
Log Message:
-----------
Commited too early

Fixed the init bug pointed out by Schlaile.
Also removed inline keyowrd for now. Seperating definition and declarion of the inline function results in build error on some compilers. Anyway, this file will be replaced soon.

Modified Paths:
--------------
    branches/soc-2013-vse/source/blender/sequencer/sequencer_types.h

Modified: branches/soc-2013-vse/source/blender/sequencer/sequencer_types.h
===================================================================
--- branches/soc-2013-vse/source/blender/sequencer/sequencer_types.h	2013-09-26 04:25:05 UTC (rev 60376)
+++ branches/soc-2013-vse/source/blender/sequencer/sequencer_types.h	2013-09-26 04:26:12 UTC (rev 60377)
@@ -14,8 +14,8 @@
 	unsigned char val;
 
 	/* make it fasteeeer */
-	inline ichar& operator=(const float &rhs);
-	inline ichar& operator=(const ifloat &rhs);
+	ichar& operator=(const float &rhs);
+	ichar& operator=(const ifloat &rhs);
 
 	ichar& operator=(unsigned char rhs);
 




More information about the Bf-blender-cvs mailing list