I have been doing some work with OpenCV, and noticed that code completion appears to fail when namespaces are used.
For example:
cv::Mat myMat;
myMat. // CC works here
But:
using namespace cv;
Mat myMat;
myMat. // CC fails to launch
Is this a known shortcoming of the parser? Is there a setting somewhere that I am missing?
(Code::Blocks rev 8160, OpenCV 2.4.2, Windows XP and Vista)