mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-07 01:06:54 +08:00
8 lines
115 B
ChaiScript
8 lines
115 B
ChaiScript
load_module("stl_extra");
|
|
|
|
auto uint16v = u16vector();
|
|
|
|
uint16v.reserve(5);
|
|
assert_true(uint16v.capacity() >= 5);
|
|
|