projects
/
chaz
/
yoink
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
4107dd3
)
removed logging from script to fix compile error
author
Charles McGarvey
<chazmcgarvey@brokenzipper.com>
Sun, 14 Mar 2010 18:57:38 +0000
(12:57 -0600)
committer
Charles McGarvey
<chazmcgarvey@brokenzipper.com>
Sun, 14 Mar 2010 18:57:38 +0000
(12:57 -0600)
src/Moof/Script.hh
patch
|
blob
|
history
diff --git
a/src/Moof/Script.hh
b/src/Moof/Script.hh
index 08284117359418234f4df58b2d84b04bbd34ca7d..974dce78d6e8e12c1151035adb162591524eb6ae 100644
(file)
--- a/
src/Moof/Script.hh
+++ b/
src/Moof/Script.hh
@@
-464,7
+464,6
@@
public:
template <class T, class V>
void setField(T field, V value)
{
template <class T, class V>
void setField(T field, V value)
{
- logWarning << "setting " << field << ", " << value << std::endl;
mScript.push(field);
mScript.push(value);
setField();
mScript.push(field);
mScript.push(value);
setField();
@@
-484,7
+483,6
@@
public:
template <class T>
void setField(const char* field, T value)
{
template <class T>
void setField(const char* field, T value)
{
- logWarning << "setfield " << field << ", " << value << std::endl;
mScript.push(value);
lua_setfield(mScript.mState, index, field);
}
mScript.push(value);
lua_setfield(mScript.mState, index, field);
}
This page took
0.020365 seconds
and
4
git commands to generate.