Displaying 1 result from an estimated 1 matches for "1012590".
Did you mean:
  101250
  
2010 Oct 05
4
[LLVMdev] MS VS2010 std implementation: "Cannot assign iterators to two different blocks!"
When using MS VS2010 there is an issue with std:
 
`SuccIterator` implements a partial assignment operator:
 
inline const _Self &operator=(const _Self &I) {
    assert(Term == I.Term &&"Cannot assign iterators to two different
blocks!");
    idx = I.idx;
    return *this;
    }
 
For copy construction, MS VS2010 std reserves the right, and sometimes
calls,
a