bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#7916: [PATCH] cc-mode does not fontify constructors and destructors


From: Daniel Colascione
Subject: bug#7916: [PATCH] cc-mode does not fontify constructors and destructors with exception specifications
Date: Tue, 25 Jan 2011 22:25:05 -0800

struct foo {
    foo() throw()  {}
    ~foo() throw() {}
};

struct bar {
    bar() throw();
    ~bar() throw();
}

struct qux {
    qux();
    ~qux() {}
};

qux::qux<int>() {

}

bar::~bar() throw()
{}

Attachment: condestruc.patch
Description: Text document


reply via email to

[Prev in Thread] Current Thread [Next in Thread]