Skip to content

Commit

Permalink
Fix ABI break (#605)
Browse files Browse the repository at this point in the history
This moves the recently added data member `explicitlySetInFile` to the
end of the `ElementPrivate` class

Signed-off-by: Addisu Z. Taddese <[email protected]>
  • Loading branch information
azeey authored Jun 29, 2021
1 parent c60e8f3 commit 01bb85f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/sdf/Element.hh
Original file line number Diff line number Diff line change
Expand Up @@ -489,9 +489,6 @@ namespace sdf
/// \brief True if element is required
public: std::string required;

/// \brief True if the element was set in the SDF file.
public: bool explicitlySetInFile;

/// \brief Element description
public: std::string description;

Expand Down Expand Up @@ -524,6 +521,9 @@ namespace sdf

/// \brief Spec version that this was originally parsed from.
public: std::string originalVersion;

/// \brief True if the element was set in the SDF file.
public: bool explicitlySetInFile;
};

///////////////////////////////////////////////
Expand Down

0 comments on commit 01bb85f

Please sign in to comment.