From ddc5d261cbac900dd30fe0688130445252145d37 Mon Sep 17 00:00:00 2001 From: "Heesterman, Peter J" Date: Mon, 17 Feb 2020 12:04:05 +0000 Subject: [PATCH] #inlcude is incorrectly located w.r.t. #define epicsExportSharedSymbols. The header file imports definitions from pvData into the module. It does not export from this module. This causes DLL build problems on Windows. --- src/client/monitor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/monitor.cpp b/src/client/monitor.cpp index c0b567b..7e59b4a 100644 --- a/src/client/monitor.cpp +++ b/src/client/monitor.cpp @@ -8,11 +8,11 @@ #include #include +#include #define epicsExportSharedSymbols #include #include -#include #include namespace pvd = epics::pvData;