From ade0bb0499dae794863243c1b7a03358a5772fe8 Mon Sep 17 00:00:00 2001 From: Raphael Riebl Date: Sat, 11 Jul 2020 12:42:03 +0200 Subject: [PATCH] apps: add path prefixes to #include of generated message headers Most #includes already have a complete path prefix. These few remaining places prevented out-of-tree builds. --- src/apps/burst/BurstReceiver.h | 2 +- src/apps/burst/BurstSender.h | 2 +- src/apps/cbr/CbrReceiver.h | 2 +- src/apps/cbr/CbrSender.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/apps/burst/BurstReceiver.h b/src/apps/burst/BurstReceiver.h index c43f81c2..e2ce4f7b 100644 --- a/src/apps/burst/BurstReceiver.h +++ b/src/apps/burst/BurstReceiver.h @@ -8,7 +8,7 @@ #include "inet/transportlayer/contract/udp/UDPSocket.h" #include "inet/networklayer/common/L3AddressResolver.h" -#include "BurstPacket_m.h" +#include "apps/burst/BurstPacket_m.h" using namespace inet; diff --git a/src/apps/burst/BurstSender.h b/src/apps/burst/BurstSender.h index 739b695a..a7cab1b1 100644 --- a/src/apps/burst/BurstSender.h +++ b/src/apps/burst/BurstSender.h @@ -11,7 +11,7 @@ #include "inet/transportlayer/contract/udp/UDPSocket.h" #include "inet/networklayer/common/L3AddressResolver.h" -#include "BurstPacket_m.h" +#include "apps/burst/BurstPacket_m.h" using namespace inet; diff --git a/src/apps/cbr/CbrReceiver.h b/src/apps/cbr/CbrReceiver.h index a922c239..1b63c1d1 100644 --- a/src/apps/cbr/CbrReceiver.h +++ b/src/apps/cbr/CbrReceiver.h @@ -8,7 +8,7 @@ #include "inet/transportlayer/contract/udp/UDPSocket.h" #include "inet/networklayer/common/L3AddressResolver.h" -#include "CbrPacket_m.h" +#include "apps/cbr/CbrPacket_m.h" using namespace inet; diff --git a/src/apps/cbr/CbrSender.h b/src/apps/cbr/CbrSender.h index 61427768..e870c851 100644 --- a/src/apps/cbr/CbrSender.h +++ b/src/apps/cbr/CbrSender.h @@ -11,7 +11,7 @@ #include "inet/transportlayer/contract/udp/UDPSocket.h" #include "inet/networklayer/common/L3AddressResolver.h" -#include "CbrPacket_m.h" +#include "apps/cbr/CbrPacket_m.h" using namespace inet;