| 76 | struct QiFunc_time : public QiFunc |
| 77 | { |
| 78 | QiFunc_time() : QiFunc(0, 1) {} |
| 79 | QiVar exec(const std::vector<QiVar>& args, QiScriptInterpreter*) const override |
| 80 | { |
| 81 | time_t s = args.empty() ? time(nullptr) : static_cast<time_t>(args[0].toInteger()); |
nothing calls this directly
no outgoing calls
no test coverage detected