mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2026-07-31 00:37:02 +08:00
Add missing #include <chrono> to src/main.cpp which caused MSVC build failures since high_resolution_clock and duration_cast were used without the header (GCC/Clang included it transitively). Remove obsolete appveyor.yml (superseded by GitHub Actions). Add ASAN+UBSAN build jobs for Linux and macOS in the CI workflow. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
4 lines
100 B
ChaiScript
4 lines
100 B
ChaiScript
// Regression test for issue #660: now() requires <chrono> include
|
|
var t = now()
|
|
assert_true(t > 0)
|