sqry-lang-cpp 12.1.6

C++ language plugin for sqry
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Single inheritance test
class Base {
public:
    virtual void process() {}
    virtual ~Base() = default;
};

class Derived : public Base {
public:
    void process() override {}
};