Bug #1328
cpp: Some std::vector issues
Status: | Approved | Start date: | 11/07/2015 | |
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | - | % Done: | 0% | |
Category: | - | Spent time: | - | |
Target version: | Release 2015.2 |
Description
void Autocomplete()
{
vector<string> v;
for(const auto& i : v)
i.
}
void Autocomplete()
{
map<int, string> m;
for(const auto& i : m)
i.second.
}
void Autocomplete()
{
map<string, Point> m;
auto q = m.begin();
q.first. ;
q.second.
}
void Autocomplete()
{
std::vector<std::string> v;
for(const auto& i : v)
i.
}
History
#1 Updated by Miroslav Fidler almost 9 years ago
- Status changed from New to Approved