Skip to content

Commit

Permalink
Use explicit default for XmlBase constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
DanRStevens committed Mar 1, 2025
1 parent 278b691 commit d35141f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NAS2D/Xml/XmlBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class XmlBase
friend class XmlDocument;

public:
XmlBase() {}
XmlBase() = default;
XmlBase(const XmlBase&) = delete;
void operator=(const XmlBase& base) = delete;
virtual ~XmlBase() = default;
Expand Down

0 comments on commit d35141f

Please sign in to comment.