From d19461174d3e2cf7fd70ccecb2347fd1f8f72974 Mon Sep 17 00:00:00 2001 From: Christophe Bedard Date: Fri, 2 Aug 2019 13:24:06 +0200 Subject: [PATCH] Fix name of Windows dll visibility define --- tracetools/include/tracetools/visibility_control.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tracetools/include/tracetools/visibility_control.hpp b/tracetools/include/tracetools/visibility_control.hpp index 44c2f9b..63a5a58 100644 --- a/tracetools/include/tracetools/visibility_control.hpp +++ b/tracetools/include/tracetools/visibility_control.hpp @@ -33,7 +33,7 @@ #define TRACETOOLS_EXPORT __declspec(dllexport) #define TRACETOOLS_IMPORT __declspec(dllimport) #endif - #ifdef TRACETOOLS_BUILDING_LIBRARY + #ifdef TRACETOOLS_BUILDING_DLL #define TRACETOOLS_PUBLIC TRACETOOLS_EXPORT #else #define TRACETOOLS_PUBLIC TRACETOOLS_IMPORT