Skip to content

Commit

Permalink
Fix header file paths
Browse files Browse the repository at this point in the history
  • Loading branch information
n-jay committed Jan 7, 2024
1 parent 341edb5 commit 8be9a0f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/inet/routing/leach/Leach.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// SPDX-License-Identifier: LGPL-3.0-or-later
//

#include "Leach.h"

#include <list>
#include <vector>
Expand All @@ -24,6 +23,7 @@
#include "inet/common/lifecycle/ModuleOperations.h"
#include "inet/common/lifecycle/NodeStatus.h"
#include "inet/common/lifecycle/LifecycleController.h"
#include "inet/routing/leach/Leach.h"

namespace inet {

Expand Down
2 changes: 1 addition & 1 deletion src/inet/routing/leach/Leach.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#include "inet/networklayer/ipv4/Ipv4InterfaceData.h"
#include "inet/networklayer/ipv4/Ipv4RoutingTable.h"
#include "inet/routing/base/RoutingProtocolBase.h"
#include "LeackPkts_m.h"
#include "inet/routing/leach/LeackPkts_m.h"
#include "inet/mobility/contract/IMobility.h"
#include "inet/common/geometry/common/Coord.h"
#include "inet/mobility/base/StationaryMobilityBase.h"
Expand Down
4 changes: 2 additions & 2 deletions src/inet/routing/leach/LeachBS.cc
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
#include "inet/common/ProtocolTag_m.h"
#include "inet/linklayer/common/InterfaceTag_m.h"
#include "inet/networklayer/common/L3AddressTag_m.h"
#include "inet/routing/leach/Leach.h"
#include "inet/physicallayer/wireless/common/contract/packetlevel/SignalTag_m.h"
#include "LeachBS.h"
#include "inet/routing/leach/LeachBS.h"
#include "inet/routing/leach/Leach.h"

using namespace std;

Expand Down
4 changes: 2 additions & 2 deletions src/inet/routing/leach/LeachBS.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
#include "inet/networklayer/ipv4/Ipv4InterfaceData.h"
#include "inet/networklayer/ipv4/Ipv4RoutingTable.h"
#include "inet/routing/base/RoutingProtocolBase.h"
#include "LeackPkts_m.h"
#include "Leach.h"
#include "inet/routing/leach/LeackPkts_m.h"
#include "inet/routing/leach/Leach.h"

namespace inet {

Expand Down

0 comments on commit 8be9a0f

Please sign in to comment.