------------------------------------------------------------------------------
| 96 | |
| 97 | //------------------------------------------------------------------------------ |
| 98 | void ofxLuaFileWriter::writeBool(const std::string& name, bool value) { |
| 99 | write<bool>(name, LUA_TBOOLEAN, value); |
| 100 | } |
| 101 | |
| 102 | void ofxLuaFileWriter::writeBool(const unsigned int index, bool value) { |
| 103 | write<bool>(index, LUA_TBOOLEAN, value); |
no outgoing calls
no test coverage detected