From 533b957a232d6cd36a49765156ed908dc3920821 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Thu, 18 Mar 2021 08:17:00 +0100 Subject: [PATCH] build: disabling of gcc warnings removed from Conan Refers to #203 --- conanfile.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/conanfile.py b/conanfile.py index d7aaf88d..37dbc098 100644 --- a/conanfile.py +++ b/conanfile.py @@ -138,7 +138,5 @@ class UnitsConan(ConanFile): def package_info(self): compiler = self.settings.compiler - if compiler == "gcc": - self.cpp_info.cxxflags = ["-Wno-non-template-friend"] - elif compiler == "Visual Studio": + if compiler == "Visual Studio": self.cpp_info.cxxflags = ["/utf-8"]