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; }; ///////////////////////////////////////////////