summaryrefslogtreecommitdiffstats
path: root/src/jaegertracing/opentelemetry-cpp/tools/vcpkg/ports/boost-concept-check/fix-warning-c4834.patch
blob: 1932163912a5da65ac5b2d111116343de9d7ac65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/include/boost/concept_check.hpp b/include/boost/concept_check.hpp
index abbadb7..cab58e5 100644
--- a/include/boost/concept_check.hpp
+++ b/include/boost/concept_check.hpp
@@ -352,7 +352,7 @@ namespace boost
    private:
       void test(boost::false_type)
       {
-          f(first,second);
+          (void) f(first,second);
           Return r = f(first, second); // require operator()
           (void)r;
       }