Module: synfig Branch: master Commit: 2483632952953e8991c696e1ba6db18ec60ff665 URL: http://synfig.git.sourceforge.net/git/gitweb.cgi?p=synfig;a=commit;h=2483632952953e8991c696e1ba6db18ec60ff665
Author: Carlos Lopez <[email protected]> Date: Fri Oct 2 18:36:32 2009 +0200 Avoid a warning for a non used variable. --- synfig-core/src/synfig/valuenode_bline.cpp | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/synfig-core/src/synfig/valuenode_bline.cpp b/synfig-core/src/synfig/valuenode_bline.cpp index fc3e916..8f10689 100644 --- a/synfig-core/src/synfig/valuenode_bline.cpp +++ b/synfig-core/src/synfig/valuenode_bline.cpp @@ -445,7 +445,8 @@ ValueNode_BLine::create_list_entry(int index, Time time, Real origin) return ret; } -static int instance_count; +// Remove this variable because it is not used. +//static int instance_count; ValueBase ValueNode_BLine::operator()(Time t)const ------------------------------------------------------------------------------ Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9-12, 2009. Register now! http://p.sf.net/sfu/devconf _______________________________________________ Synfig-devl mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/synfig-devl
