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]>
Signed-off-by: Jenn Nguyen <[email protected]>
  • Loading branch information
azeey authored and jennuine committed Jul 29, 2021
1 parent cec38a3 commit 945024c
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 @@ -504,9 +504,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 @@ -539,6 +536,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 945024c

Please sign in to comment.