From c405017b8c5a75b5c62f729b5605f66c60b031fd Mon Sep 17 00:00:00 2001 From: bert hubert Date: Mon, 26 Oct 2015 19:03:58 +0100 Subject: [PATCH] move #includes around to solve namespace clashes on our 'L' logger --- pdns/test-delaypipe_hh.cc | 2 +- pdns/testrunner.cc | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pdns/test-delaypipe_hh.cc b/pdns/test-delaypipe_hh.cc index 52155ff3a..a4dc324c5 100644 --- a/pdns/test-delaypipe_hh.cc +++ b/pdns/test-delaypipe_hh.cc @@ -3,8 +3,8 @@ #ifdef HAVE_CONFIG_H #include "config.h" #endif -#include "delaypipe.hh" #include +#include "delaypipe.hh" BOOST_AUTO_TEST_SUITE(test_delaypipe_hh); diff --git a/pdns/testrunner.cc b/pdns/testrunner.cc index 68cbdcaf0..b3ff81535 100644 --- a/pdns/testrunner.cc +++ b/pdns/testrunner.cc @@ -5,8 +5,9 @@ #ifdef HAVE_CONFIG_H #include "config.h" #endif +#include #include "packetcache.hh" StatBag S; PacketCache PC; -#include + -- 2.40.0