| 62 | } |
| 63 | |
| 64 | size_t LuaBaseStream::write(std::string buf) { |
| 65 | return static_cast<size_t>(stream_->write(reinterpret_cast<uint8_t *>(const_cast<char *>(buf.data())), |
| 66 | static_cast<int>(buf.length()))); |
| 67 | } |
| 68 | |
| 69 | } /* namespace lua */ |
| 70 | } /* namespace minifi */ |