File tree Expand file tree Collapse file tree 3 files changed +4
-12
lines changed
Expand file tree Collapse file tree 3 files changed +4
-12
lines changed Original file line number Diff line number Diff line change @@ -1286,7 +1286,6 @@ add_sources(
12861286)
12871287add_sources(
12881288 "src/xtd/environment_version.cpp"
1289- "src/xtd/abstract.cpp"
12901289 "src/xtd/access_violation_exception.cpp"
12911290 "src/xtd/register_any_stringer.cpp"
12921291 "src/xtd/attribute.cpp"
Original file line number Diff line number Diff line change @@ -25,18 +25,17 @@ namespace xtd {
2525 // / };
2626 // / ```
2727 class abstract_object : public xtd ::object {
28- public:
29- // / @cond
30- ~abstract_object () override = 0 ;
31- // / @endcond
32-
3328 protected:
3429 // / @name Protected Constructors
3530
3631 // / @{
3732 // / @brief Initializes a new instance of the xtd::abstract_object class.
3833 abstract_object () = default ;
3934 // / @}
35+
36+ // / @cond
37+ ~abstract_object () override = default ;
38+ // / @endcond
4039 };
4140
4241 // / @brief This keyword is used to represents an abstract class.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments