Not a big deal, but FYI...
The sugestion and completion lists will display constant pointer cast operators by merging the "const" and <type> together. Easiest way to reproduce is to type the following:
struct T
{
operator const char*();
};
T:: <shows completion listbox>
The suggestion/completion listbox will show "operator constchar*", omitting the space between "const" and "char". Like I said, not a big deal :)
gg