File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -53,9 +53,7 @@ class Document : NonCopyable
53
53
{
54
54
public:
55
55
Init ();
56
-
57
- // TODO: Remove the virtual when we can break ABI?
58
- virtual ~Init ();
56
+ ~Init ();
59
57
};
60
58
61
59
friend class SaxParser ;
@@ -253,11 +251,9 @@ class Document : NonCopyable
253
251
_xmlEntity* get_entity (const Glib::ustring& name);
254
252
255
253
private:
256
- // TODO: Remove virtuals when we can break ABI.
257
-
258
- virtual void do_write_to_file (const Glib::ustring& filename, const Glib::ustring& encoding, bool format);
259
- virtual Glib::ustring do_write_to_string (const Glib::ustring& encoding, bool format);
260
- virtual void do_write_to_stream (std::ostream& output, const Glib::ustring& encoding, bool format);
254
+ void do_write_to_file (const Glib::ustring& filename, const Glib::ustring& encoding, bool format);
255
+ Glib::ustring do_write_to_string (const Glib::ustring& encoding, bool format);
256
+ void do_write_to_stream (std::ostream& output, const Glib::ustring& encoding, bool format);
261
257
262
258
static Init init_;
263
259
You can’t perform that action at this time.
0 commit comments