| 86 | } |
| 87 | |
| 88 | void ofxLuaFileWriter::endTable() { |
| 89 | if(tables.empty()) { |
| 90 | ofLogWarning("ofxLua") << "No tables to end, call beginTable"; |
| 91 | } |
| 92 | else { |
| 93 | tables.pop_back(); |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | //------------------------------------------------------------------------------ |
| 98 | void ofxLuaFileWriter::writeBool(const std::string& name, bool value) { |
no outgoing calls
no test coverage detected