diff --git a/include/cubescript/cubescript_conf.hh b/include/cubescript/cubescript_conf.hh index 1e08c7e..4f978d6 100644 --- a/include/cubescript/cubescript_conf.hh +++ b/include/cubescript/cubescript_conf.hh @@ -10,21 +10,15 @@ #include namespace cscript { - template - using CsAllocator = ostd::Allocator; - using CsInt = int; using CsFloat = float; - using CsString = ostd::StringBase>; + using CsString = ostd::String; template - using CsMap = ostd::Map< - K, V, ostd::ToHash, ostd::EqualWithCstr, - CsAllocator> - >; + using CsMap = ostd::Map; template - using CsVector = ostd::Vector>; + using CsVector = ostd::Vector; using CsStream = ostd::Stream;