
I am having a weird problem using the boost assignment library with Visual Studio 7.1. When I type the following code: std::map<std::string, std::string> myMap = boost::assign::map_list_of my IDE freezes as soon as I type the left parenthesis. Has anyone ever seen this behavior before, and if so is there anything I can do about it? Joe Gottman

"Joe Gottman" <jgottman@carolina.rr.com> wrote in message news:ehrjlh$5q3$1@sea.gmane.org...
I am having a weird problem using the boost assignment library with Visual Studio 7.1. When I type the following code:
std::map<std::string, std::string> myMap = boost::assign::map_list_of
my IDE freezes as soon as I type the left parenthesis. Has anyone ever seen this behavior before, and if so is there anything I can do about it?
Yes you could try turning off the auto list members and/or parameters information options in Tools >Options >Text Editor >C++. This may be the cause. regards Andy Little

Joe Gottman wrote:
I am having a weird problem using the boost assignment library with Visual Studio 7.1. When I type the following code:
std::map<std::string, std::string> myMap = boost::assign::map_list_of
my IDE freezes as soon as I type the left parenthesis. Has anyone ever seen this behavior before, and if so is there anything I can do about it?
Joe Gottman
_______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost
hi joe, yes i have, but it was "bind" for me. just disable the msvc code completion and it should work. "tools/options/text editor/'c/c++'/auto list members" -- HTH dave
participants (3)
-
Andy Little
-
David Klein
-
Joe Gottman