From 01bb85f06ea3baa7715a2c5a71ac84d12e0fd81d Mon Sep 17 00:00:00 2001 From: "Addisu Z. Taddese" Date: Mon, 28 Jun 2021 21:45:09 -0500 Subject: [PATCH] Fix ABI break (#605) This moves the recently added data member `explicitlySetInFile` to the end of the `ElementPrivate` class Signed-off-by: Addisu Z. Taddese --- include/sdf/Element.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/sdf/Element.hh b/include/sdf/Element.hh index 798f7828e..27f3cc239 100644 --- a/include/sdf/Element.hh +++ b/include/sdf/Element.hh @@ -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; @@ -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; }; ///////////////////////////////////////////////