From: Carlos Lopez Date: Fri, 2 Oct 2009 16:36:32 +0000 (+0200) Subject: Avoid a warning for a non used variable. X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;ds=sidebyside;h=2483632952953e8991c696e1ba6db18ec60ff665;p=synfig.git Avoid a warning for a non used variable. --- 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