Bug #1079
cpp: push_back methid of std::vector is not detected
| Status: | Approved | Start date: | 05/16/2015 | |
|---|---|---|---|---|
| Priority: | Normal | Due date: | ||
| Assignee: | Zbigniew Rebacz | % Done: | 0% | |
| Category: | IDE | Spent time: | - | |
| Target version: | - |
Description
pop_back is detected, but push_back for some reson is not.
History
#1 Updated by Zbigniew Rebacz over 10 years ago
I have forgotten about os specification: Ubuntu 14.04 with GCC. It can be quite important.
#2 Updated by Miroslav Fidler over 10 years ago
- Status changed from New to Ready for QA
- Assignee changed from Miroslav Fidler to Zbigniew Rebacz
#3 Updated by Zbigniew Rebacz over 10 years ago
- Status changed from Ready for QA to In Progress
- Assignee changed from Zbigniew Rebacz to Miroslav Fidler
Still not luck on GCC on Ubuntu 14.04.
Here is my test code:
#include <iostream>
#include <vector>
int main(int argc, const char *argv[])
{
std::vector<int> vec;
vec.
return 0;
}
#4 Updated by Miroslav Fidler over 10 years ago
You might need to reparse sourcs (Assist menu).
#5 Updated by Miroslav Fidler over 10 years ago
- Status changed from In Progress to Ready for QA
- Assignee changed from Miroslav Fidler to Zbigniew Rebacz
#6 Updated by Zbigniew Rebacz over 10 years ago
- Status changed from Ready for QA to Approved
OK it works! Thanks for the tip.