In CommandCompletion.h:243 if (resolved_username_len = 0 || resolved_username_len >= sizeof (containing_part))
should be if (resolved_username_len == 0 || resolved_username_len >= sizeof (containing_part)) That's why you should compile with -Wparenthese ;-)
hum.patch
Description: Binary data
-- Jean-Daniel
_______________________________________________ lldb-dev mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev
