I am seeing a problem with "boost::optional", I am using the simple test code:
#include <boost/optional.hpp>
struct stOptionalItems
{
int nFruit;
int nSquare;
int nSphere;
};
static void testOptionalItem()
{
boost::optional<stOptionalItems> optTest;
optTest->nFruit; // "nFruit" underlined as mistyped symbol
}
Have you always had problems with "boost::optional", or is this a new problem? I am seeing the same underlining problem in VA 1635 and VA 1561.
I am not seeing the same listbox problems as you are. Does turning on
VA Options -> Advanced -> Listboxes -> Get content from default Intellisense
help?