From: Foster B. <fbr...@ad...> - 2009-07-21 21:11:02
|
FYI -- Sean, any interest in taking a look at this? Blessings, Foster ------ Forwarded Message I have the ASL crash in its own project, 20 lines, crashes in the same way - when stuffing the fourth element into 'aDict': #include <adobe/dictionary.hpp> #include <adobe/name.hpp> int main (int argc, char * const argv[]) { adobe::dictionary_t aDict; adobe::version_1::static_name_t one("one"); adobe::version_1::static_name_t two("two"); adobe::version_1::static_name_t three("three"); adobe::version_1::static_name_t four("four"); aDict[one].assign((adobe::any_regular_t((double)1.0))); aDict[two].assign(adobe::any_regular_t((double)2.0)); aDict[three].assign(adobe::any_regular_t((double)3.0)); aDict[four].assign(adobe::any_regular_t((double)4.0)); return 0; } ------ End of Forwarded Message |