From: David C. <unc...@un...> - 2005-03-25 16:05:59
|
I'm having a hard time figuring out this error. It happens on this line in the bevel_button_proxy_t constructor (around line 1315 of client_assembler.cpp): control_m.add_menu_item( (*iter).get<adobe::dictionary_t>()[key_name].get<std::string>(), (*iter).get<adobe::dictionary_t>()[key_value]); I'm getting "parse error before `>' token" and it seems to be referring to <adobe::dictionary_t>. This is odd because dictionary_t is used several times before this in this file. In assemblage.cpp, line 28, changing this: adobe::for_each(connections_m, boost::bind(connection_t::disconnect, _1)); to this: adobe::for_each(connections_m, boost::bind(&connection_t::disconnect, _1)); fixes another compiler error. I haven't yet figured out the "parse error before `;' token" error at assemblage.hpp line 48. -- David Catmull unc...@un... http://www.uncommonplace.com/ |