提交 bda7ff10 编写于 作者: S Sergey Zubkov

CI fixes

上级 4c4fb37b
......@@ -7129,8 +7129,8 @@ An abstract class typically does not have any data for a constructor to initiali
class Shape {
public:
// no user-written constructor needed in abstract base class
virtual Point center() const =0; // pure virtual
virtual void move(Point to) =0;
virtual Point center() const = 0; // pure virtual
virtual void move(Point to) = 0;
// ... more pure virtual functions...
virtual ~Shape() {} // destructor
};
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册