| 92 | struct QiFunc_datetime : public QiFunc |
| 93 | { |
| 94 | QiFunc_datetime() : QiFunc(0, 1) {} |
| 95 | QiVar exec(const std::vector<QiVar>& args, QiScriptInterpreter*) const override |
| 96 | { |
| 97 | 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