Skip to content

Commit

Permalink
fix order of initialization warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
nam20485 committed Dec 16, 2023
1 parent 4deb5af commit 6d23c97
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions OdbDesignLib/FileModel/Design/AttrListFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
namespace Odb::Lib::FileModel::Design
{
AttrListFile::AttrListFile()
: m_units("")
, m_directory("")
: m_directory("")
, m_path("")
, m_units("")
{
}

Expand Down
6 changes: 3 additions & 3 deletions OdbDesignLib/FileModel/Design/FeaturesFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
namespace Odb::Lib::FileModel::Design
{
FeaturesFile::FeaturesFile()
: m_id((unsigned) -1)
, m_numFeatures(0)
, m_units("")
: m_units("")
, m_path("")
, m_directory("")
, m_numFeatures(0)
, m_id((unsigned) -1)
{
}

Expand Down

0 comments on commit 6d23c97

Please sign in to comment.