#597092 vim: syntax highlighting for anonymous C++ classes deriving from others

#597092#5
Date:
2010-09-16 14:20:35 UTC
From:
To:
Hi,

when defining an anonymous inner class that derives from an interface,
there is no class name between the keyword "class" and the colon
indicating inheritance, i.e.:

class myclass
{
    class :
        public interface
    {
        ...
    };
};

Syntax highlighting believes "class" to be a label, and uses yellow,
instead of a keyword (green).

   Simon