Michael Hamilton

Results 9 comments of Michael Hamilton

I noticed this and changed it in my code to the following which isn't terribly elegant but doesn't produce a warning or rely on deprecated features or pragma warning disables:...

You can make use of m.at("i") which if it is not present will throw instead of inserting. m["i"] is expected to insert if the key is missing. It doesn't look...

I'm personally running across this as I'm curious what the performance is of AngelScript vs ChaiScript. I really like ChaiScript, but it hasn't had much support the past two years...

I have no critique of design decisions and am actively enjoying and using ChaiScript currently. With no future roadmap however it's not unreasonable to ask what else exists. I also...

I have something I want to share as I gain further experience with and generally enjoy ChaiScript: The common use of exceptions within ChaiScript actually makes it a little harder...

``` clang-linux.compile.c++.without-pch ..\build\build\x86_64\boost\bin.v2\libs\container\build\clang-linux-x8664\release\link-static\target-os-android\threading-multi\visibility-hidden\pool_resource.o "C:/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/windows-x86_64/bin/x86_64-linux-android21-clang++" -c -x c++ -fvisibility-inlines-hidden -m64 -O3 -Wall -fvisibility=hidden -Wno-inline -fPIC -ffunction-sections -fdata-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -Wformat -Werror=format-security -frtti -fexceptions -DNDEBUG -g -Oz -DBOOST_ALL_NO_LIB=1 -DBOOST_CONTAINER_STATIC_LINK=1 -DNDEBUG -I"."...

Have you tried PortableBinary archives?

save_minimal should do what you want I believe.

You’re likely to have better luck generating some kind of paginated archive class which contains an array of “pages” each “page” object contains a list of polymorphic objects. Have manual...