12 Mar
2009
12 Mar
'09
8:46 p.m.
On Thu, Mar 12, 2009 at 3:36 PM, Steven Watanabe
After filling in enough to make your code compile, it works for me. I've attached what I did. If this works for you, can you post a minimal and complete example that fails?
Hi Steven, Your example works for me as well, since you've found the same fix my colleague found, which is to write std::auto_ptr<ByTypeFooIterator> iter_ptr(new ByTypeFooIterator); instead of std::auto_ptr<ByTypeFooIterator> iter_ptr = new ByTypeFooIterator; This one change was "all" it took (except I couldn't see it of course...) Thank you very much for taking the time to test it Steven, and for finding a solution. Cheers again, --DD