Skip to content

Commit 82ff81c

Browse files
Fix include issue with Branch.hpp (#57)
Also brought some adjacent include in line with style guidelines
1 parent f33d600 commit 82ff81c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/Model/PhasorDynamics/Branch/Branch.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@
6060
#include <iostream>
6161
#include <cmath>
6262
#include <Model/PhasorDynamics/Bus/Bus.hpp>
63-
#include <PowerSystemData.hpp>
6463

6564
#include "Branch.hpp"
6665

src/Model/PhasorDynamics/Branch/Branch.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@
5959

6060
#pragma once
6161

62-
#include <ModelEvaluatorImpl.hpp>
62+
#include "ModelEvaluatorImpl.hpp"
63+
#include "PowerSystemData.hpp"
6364

6465
// Forward declarations.
6566
namespace GridKit

src/Model/PowerFlow/Branch/Branch.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@
6060
#include <iostream>
6161
#include <cmath>
6262
#include <Model/PowerFlow/Bus/BaseBus.hpp>
63-
#include <PowerSystemData.hpp>
6463

6564
#include "Branch.hpp"
6665

src/Model/PowerFlow/Branch/Branch.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@
6060
#ifndef _BRANCH_H_
6161
#define _BRANCH_H_
6262

63-
#include <ModelEvaluatorImpl.hpp>
63+
#include "ModelEvaluatorImpl.hpp"
64+
#include "PowerSystemData.hpp"
6465

6566
namespace GridKit
6667
{

0 commit comments

Comments
 (0)