projects
/
synfig.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
04220aa
)
Avoid a warning for a non used variable.
author
Carlos Lopez
<genetita@gmail.com>
Fri, 2 Oct 2009 16:36:32 +0000
(18:36 +0200)
committer
Carlos Lopez
<genetita@gmail.com>
Fri, 2 Oct 2009 16:36:32 +0000
(18:36 +0200)
synfig-core/src/synfig/valuenode_bline.cpp
patch
|
blob
|
history
diff --git
a/synfig-core/src/synfig/valuenode_bline.cpp
b/synfig-core/src/synfig/valuenode_bline.cpp
index
fc3e916
..
8f10689
100644
(file)
--- 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