19 Jan
2013
19 Jan
'13
12:06 p.m.
Hi there, The code below would simply crash on g++ 4.7.1/MinGW with default optimization level, it doesn't shown with -O/1/2/3 ---------------------------------------- boost::container::deque<int> d; --d.begin(); ---------------------------------------- I took a look into the impl, seems that it dereferences from (this->m_node - 1) which is invalid at the time. I guess it's the problem. Thoughts?