forked from PuqiAR/Fig-TreeWalker
[Feat] is 操作符现在可以直接判断内置数据类型, 如 10 is Int [Fix] evalMemberExpr的lhs可以为右值,修复原来限制为左值的BUG,如调用一个函数返回结果为struct且访问member触发此bug [Impl] 可更换的std::dynamic_pointer_cast更换为static版本,更快! [Feat] 增加标准库 std.time,以及用到的builtin: __ftime_now_ns,但目前 Time类有点BUG [...] 剩下的忘了
10 lines
183 B
C++
10 lines
183 B
C++
#pragma once
|
|
|
|
#include <chrono>
|
|
|
|
namespace Fig::Time
|
|
{
|
|
using Clock = std::chrono::steady_clock;
|
|
extern Clock::time_point start_time; // since process start
|
|
void init();
|
|
}; |