Skip to content

Commit

Permalink
fix header include order
Browse files Browse the repository at this point in the history
Signed-off-by: Martijn Govers <[email protected]>
  • Loading branch information
mgovers committed Feb 21, 2024
1 parent 158c486 commit 7474166
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

#include "meta_data.hpp"

#include "../common/enum.hpp"
#include "../common/common.hpp"
#include "../common/enum.hpp"
#include "../common/three_phase_tensor.hpp"

namespace power_grid_model {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@

#include "gen_getters.hpp" // NOLINT

#include "../../common/common.hpp" // NOLINT
#include "../../common/enum.hpp" // NOLINT
#include "../../common/common.hpp" // NOLINT
#include "../../common/three_phase_tensor.hpp" // NOLINT
#include "../meta_data.hpp" // NOLINT
#include "../meta_data.hpp" // NOLINT

#include "../{{ name }}.hpp" // NOLINT


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

#include "meta_data.hpp"

#include "../common/enum.hpp"
#include "../common/common.hpp"
#include "../common/enum.hpp"
#include "../common/three_phase_tensor.hpp"

namespace power_grid_model {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@

#include "gen_getters.hpp" // NOLINT

#include "../../common/common.hpp" // NOLINT
#include "../../common/enum.hpp" // NOLINT
#include "../../common/common.hpp" // NOLINT
#include "../../common/three_phase_tensor.hpp" // NOLINT
#include "../meta_data.hpp" // NOLINT
#include "../meta_data.hpp" // NOLINT

#include "../input.hpp" // NOLINT


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@

#include "gen_getters.hpp" // NOLINT

#include "../../common/common.hpp" // NOLINT
#include "../../common/enum.hpp" // NOLINT
#include "../../common/common.hpp" // NOLINT
#include "../../common/three_phase_tensor.hpp" // NOLINT
#include "../meta_data.hpp" // NOLINT
#include "../meta_data.hpp" // NOLINT

#include "../output.hpp" // NOLINT


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@

#include "gen_getters.hpp" // NOLINT

#include "../../common/common.hpp" // NOLINT
#include "../../common/enum.hpp" // NOLINT
#include "../../common/common.hpp" // NOLINT
#include "../../common/three_phase_tensor.hpp" // NOLINT
#include "../meta_data.hpp" // NOLINT
#include "../meta_data.hpp" // NOLINT

#include "../update.hpp" // NOLINT


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

#include "meta_data.hpp"

#include "../common/enum.hpp"
#include "../common/common.hpp"
#include "../common/enum.hpp"
#include "../common/three_phase_tensor.hpp"

namespace power_grid_model {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

#include "meta_data.hpp"

#include "../common/enum.hpp"
#include "../common/common.hpp"
#include "../common/enum.hpp"
#include "../common/three_phase_tensor.hpp"

namespace power_grid_model {
Expand Down

0 comments on commit 7474166

Please sign in to comment.