https://github.com/Kitware/CMake
Raw File
Tip revision: a4231943117f5ba3dd0fdc6c8b1824334162b69f authored by Brad King on 04 June 2019, 16:29:02 UTC
Merge branch 'ctest_xml_tweaks' into release-3.15
Tip revision: a423194
foo.cpp
class Foo
{
public:
  void bar() {}
};

void baz()
{
  Foo foo;
  foo.bar();
}
back to top