Skip to content
Snippets Groups Projects
Commit 0639e239 authored by Brad King's avatar Brad King Committed by Kitware Robot
Browse files

Merge topic 'CM_OVERRIDE-clang'

3f77655d CM_OVERRIDE: fix feature test for clang
parents 2c759971 3f77655d
Branches
Tags
No related merge requests found
struct Foo
{
Foo() {}
virtual ~Foo() {}
virtual int test() const = 0;
};
struct Bar : Foo
{
Bar() {}
~Bar() override {}
int test() const override { return 0; }
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment