Details
-
Bug
-
Resolution: Done
-
P2: Important
-
Qt Creator 1.2.1
-
Debian Squeeze x86_64
Description
The c++ parser don't understand the _restrict_ extension which marks unique pointer in gcc (like the restrict keyword does in c99).
An example:
class xyz{
void test( int* _restrict_ pointer);
}