Patches item #3376896, was opened at 2011-07-25 01:18 Message generated for change (Comment added) made by brlcad You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=640804&aid=3376896&group_id=105292
Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. >Category: Geometry Conversion >Group: Untested Status: Open >Resolution: Accepted >Priority: 8 Private: No Submitted By: Zach Easterbrook (lainiwakurax) Assigned to: Nobody/Anonymous (nobody) Summary: All instances of SCLstring changed to std::string Initial Comment: I've changed all instances of SCLstring to std::string, in places this also involved changing SCLstring class functions to their std::string equivalent. A frequent example is changing something like: s.Append(c) to s += c Here, s was a SCLstring object, and we changed it to a std::string and used std::string's overloaded += to append the single char c There were other things (replacing SCLstring's set_null() with std::string's clear() etc.,) Compiled successfully using cmake version 2.8.5 compiler info: Using built-in specs. COLLECT_GCC=g++ COLLECT_LTO_WRAPPER=/usr/local/libexec/gcc/i686-pc-linux-gnu/4.6.0/lto-wrapper Target: i686-pc-linux-gnu Configured with: ./configure Thread model: posix gcc version 4.6.0 (GCC) This patch was written for revision 45582 ---------------------------------------------------------------------- >Comment By: Sean Morrison (brlcad) Date: 2011-07-25 03:59 Message: Zach, that is just phenomenal, awesome work! Impressive to say the least and highly useful.. We're actively working on STEP support enhancements, so this is quite timely too. I'll give testing a go here tomorrow (Mon). Would I be correct presuming you didn't test whether the existing step-g importer still works? If not, no big deal but we'll have to make sure. Still, looks fantastic. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=640804&aid=3376896&group_id=105292 ------------------------------------------------------------------------------ Storage Efficiency Calculator This modeling tool is based on patent-pending intellectual property that has been used successfully in hundreds of IBM storage optimization engage- ments, worldwide. Store less, Store more with what you own, Move data to the right place. Try It Now! http://www.accelacomm.com/jaw/sfnl/114/51427378/ _______________________________________________ BRL-CAD Tracker mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/brlcad-tracker
