Details
-
Bug
-
Resolution: Out of scope
-
Not Evaluated
-
None
-
Qt Creator 3.2.0
-
None
-
win7, qt-enterprise edition, qt creator 3.2
Description
When debugging contents of a std::vector, the sorting of its elements is wrong (see attached picture)
how to reproduce:
#include <algorithm>
#include <iostream>
#include <vector>
int main()
{
std::vector<int> v(100);
std::iota(std::begin(v), std::end(v), 1);
for (int i : v)
{ std::cout << i << std::endl; }}
Attachments
Issue Links
- relates to
-
QTCREATORBUG-14872 QVector members in the "Locals and Expressions" are sorted in the wrong order
- Closed