From 4b60312769b380d244013d0a8d5e8811f1f248b1 Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Tue, 27 Aug 2024 18:45:01 +0300 Subject: [PATCH] yaml-cpp: Delete build debug messages They pollute the build output. Upstream PR: https://github.com/jbeder/yaml-cpp/pull/1316 Change-Id: Ib3a72a1c92c878b2b1d18cb95e588dba7b166395 Reviewed-by: Eike Ziller Reviewed-by: hjk --- src/libs/3rdparty/yaml-cpp/include/yaml-cpp/dll.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/libs/3rdparty/yaml-cpp/include/yaml-cpp/dll.h b/src/libs/3rdparty/yaml-cpp/include/yaml-cpp/dll.h index eabdda1d95c..4e55ab8c224 100644 --- a/src/libs/3rdparty/yaml-cpp/include/yaml-cpp/dll.h +++ b/src/libs/3rdparty/yaml-cpp/include/yaml-cpp/dll.h @@ -15,11 +15,9 @@ # ifndef YAML_CPP_API # ifdef yaml_cpp_EXPORTS /* We are building this library */ -# pragma message( "Defining YAML_CPP_API for DLL export" ) # define YAML_CPP_API __declspec(dllexport) # else /* We are using this library */ -# pragma message( "Defining YAML_CPP_API for DLL import" ) # define YAML_CPP_API __declspec(dllimport) # endif # endif