From 52cf5307ca75e271d76c9739a97be317965e203f Mon Sep 17 00:00:00 2001 From: Dirk Zimoch Date: Wed, 5 Nov 2025 14:44:37 +0100 Subject: [PATCH] Silence warnings about using deprecated pvData functions Remove the PVD_INTERNAL macro after fixing the function use. --- testApp/remote/channelAccessIFTest.cpp | 3 +++ testApp/remote/testServer.cpp | 3 +++ 2 files changed, 6 insertions(+) diff --git a/testApp/remote/channelAccessIFTest.cpp b/testApp/remote/channelAccessIFTest.cpp index 97f545c..134a8b8 100644 --- a/testApp/remote/channelAccessIFTest.cpp +++ b/testApp/remote/channelAccessIFTest.cpp @@ -1,6 +1,9 @@ // disable buggy boost enable_shared_from_this assert code #define BOOST_DISABLE_ASSERTS +// Disable warnings about using deprecated functions from pvData +#define PVD_INTERNAL + #include #include #include diff --git a/testApp/remote/testServer.cpp b/testApp/remote/testServer.cpp index 2e0c157..29b8104 100644 --- a/testApp/remote/testServer.cpp +++ b/testApp/remote/testServer.cpp @@ -5,6 +5,9 @@ // disable buggy boost enable_shared_from_this assert code #define BOOST_DISABLE_ASSERTS +// Disable warnings about using deprecated functions from pvData +#define PVD_INTERNAL + #include #include #include