Skip to content

Commit

Permalink
Changing rtti destructor to non-virtual
Browse files Browse the repository at this point in the history
  • Loading branch information
thirtytwobits committed Oct 16, 2024
1 parent 3271390 commit d3cc145
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/cetl/rtti.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ class rtti
rtti() = default;
rtti(const rtti&) = default;
rtti(rtti&&) = default;
virtual ~rtti() noexcept = default;
~rtti() noexcept = default;
rtti& operator=(const rtti&) = default;
rtti& operator=(rtti&&) = default;
};
Expand Down

0 comments on commit d3cc145

Please sign in to comment.