From 2d61b4c0f380fa52b8b6ab32b88e5509cc506661 Mon Sep 17 00:00:00 2001 From: mrkraimer Date: Tue, 30 Mar 2021 16:04:50 -0400 Subject: [PATCH] fix include order --- src/special/addRecordRegister.cpp | 4 ++-- src/special/processRecordRegister.cpp | 4 ++-- src/special/removeRecordRegister.cpp | 4 ++-- src/special/traceRecordRegister.cpp | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/special/addRecordRegister.cpp b/src/special/addRecordRegister.cpp index 4dee555..4a14fa3 100644 --- a/src/special/addRecordRegister.cpp +++ b/src/special/addRecordRegister.cpp @@ -18,12 +18,12 @@ #include #include #include +#include "pv/pvStructureCopy.h" +#include "pv/pvDatabase.h" // The following must be the last include for code pvDatabase uses #include #define epicsExportSharedSymbols -#include "pv/pvStructureCopy.h" -#include "pv/pvDatabase.h" #include "pv/addRecord.h" using namespace epics::pvData; diff --git a/src/special/processRecordRegister.cpp b/src/special/processRecordRegister.cpp index 985f476..137c9b7 100644 --- a/src/special/processRecordRegister.cpp +++ b/src/special/processRecordRegister.cpp @@ -19,12 +19,12 @@ #include #include #include +#include "pv/pvStructureCopy.h" +#include "pv/pvDatabase.h" // The following must be the last include for code pvDatabase uses #include #define epicsExportSharedSymbols -#include "pv/pvStructureCopy.h" -#include "pv/pvDatabase.h" #include "pv/processRecord.h" diff --git a/src/special/removeRecordRegister.cpp b/src/special/removeRecordRegister.cpp index 4976c3e..efba5fb 100644 --- a/src/special/removeRecordRegister.cpp +++ b/src/special/removeRecordRegister.cpp @@ -18,12 +18,12 @@ #include #include #include +#include "pv/pvStructureCopy.h" +#include "pv/pvDatabase.h" // The following must be the last include for code pvDatabase uses #include #define epicsExportSharedSymbols -#include "pv/pvStructureCopy.h" -#include "pv/pvDatabase.h" #include "pv/removeRecord.h" using namespace epics::pvData; diff --git a/src/special/traceRecordRegister.cpp b/src/special/traceRecordRegister.cpp index 3c60400..3f56f01 100644 --- a/src/special/traceRecordRegister.cpp +++ b/src/special/traceRecordRegister.cpp @@ -19,12 +19,12 @@ #include #include #include +#include "pv/pvStructureCopy.h" +#include "pv/pvDatabase.h" // The following must be the last include for code pvDatabase uses #include #define epicsExportSharedSymbols -#include "pv/pvStructureCopy.h" -#include "pv/pvDatabase.h" #include "pv/traceRecord.h" using namespace epics::pvData;