diff --git a/example/ambiguity.cpp b/example/ambiguity.cpp index 91f6d0b..23931b7 100644 --- a/example/ambiguity.cpp +++ b/example/ambiguity.cpp @@ -6,6 +6,9 @@ Distributed under the Boost Software License, Version 1.0. */ +//useless MSVC /Wall warnings +#pragma warning(disable: 4514 4711) + #include #include #include diff --git a/example/bind_expr/example_1.cpp b/example/bind_expr/example_1.cpp index eb5b09e..b77b4e3 100644 --- a/example/bind_expr/example_1.cpp +++ b/example/bind_expr/example_1.cpp @@ -6,6 +6,9 @@ Distributed under the Boost Software License, Version 1.0. */ +//useless MSVC /Wall warnings +#pragma warning(disable: 4514 4711) + #include #include #include diff --git a/example/bind_expr/example_2.cpp b/example/bind_expr/example_2.cpp index 444fe19..8b84b1b 100644 --- a/example/bind_expr/example_2.cpp +++ b/example/bind_expr/example_2.cpp @@ -6,6 +6,9 @@ Distributed under the Boost Software License, Version 1.0. */ +//useless MSVC /Wall warnings +#pragma warning(disable: 4514 4711) + #include #include #include diff --git a/example/intro.cpp b/example/intro.cpp index 022edd8..3933956 100644 --- a/example/intro.cpp +++ b/example/intro.cpp @@ -4,6 +4,9 @@ (See accompanying file LICENSE.md or copy at http ://boost.org/LICENSE_1_0.txt) */ +//useless MSVC /Wall warnings +#pragma warning(disable: 4514 4711) + #include #include #include diff --git a/example/void.cpp b/example/void.cpp index ed9eae5..8c5f701 100644 --- a/example/void.cpp +++ b/example/void.cpp @@ -6,6 +6,9 @@ Distributed under the Boost Software License, Version 1.0. */ +//useless MSVC /Wall warnings +#pragma warning(disable: 4514 4711) + #include #include #include diff --git a/include/callable_traits/callable_traits.hpp b/include/callable_traits/callable_traits.hpp index 05cd6af..962213a 100644 --- a/include/callable_traits/callable_traits.hpp +++ b/include/callable_traits/callable_traits.hpp @@ -10,7 +10,6 @@ Distributed under the Boost Software License, Version 1.0. #ifndef CALLABLE_TRAITS_HPP #define CALLABLE_TRAITS_HPP - #include #include #include diff --git a/test/args.cpp b/test/args.cpp index 2a442bd..91af747 100644 --- a/test/args.cpp +++ b/test/args.cpp @@ -5,6 +5,8 @@ Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) */ +//useless MSVC /Wall warnings +#pragma warning(disable: 4514 4711) #include #include diff --git a/test/arity.cpp b/test/arity.cpp index 3ab49b0..b125dcf 100644 --- a/test/arity.cpp +++ b/test/arity.cpp @@ -6,6 +6,9 @@ Distributed under the Boost Software License, Version 1.0. */ +//useless MSVC /Wall warnings +#pragma warning(disable: 4514 4711) + #include #include #include diff --git a/test/bind_expression.cpp b/test/bind_expression.cpp index ea46454..73355c4 100644 --- a/test/bind_expression.cpp +++ b/test/bind_expression.cpp @@ -5,6 +5,8 @@ Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) */ +//useless MSVC /Wall warnings +#pragma warning(disable: 4514 4711) #include #include diff --git a/test/bind_expression_parser.cpp b/test/bind_expression_parser.cpp index ce41cce..812c877 100644 --- a/test/bind_expression_parser.cpp +++ b/test/bind_expression_parser.cpp @@ -6,6 +6,9 @@ Distributed under the Boost Software License, Version 1.0. */ +//useless MSVC /Wall warnings +#pragma warning(disable: 4514 4711) + #include #include #include diff --git a/test/can_invoke.cpp b/test/can_invoke.cpp index af121d5..7fcf197 100644 --- a/test/can_invoke.cpp +++ b/test/can_invoke.cpp @@ -6,6 +6,9 @@ Distributed under the Boost Software License, Version 1.0. */ +//useless MSVC /Wall warnings +#pragma warning(disable: 4514 4711) + #include #include #include diff --git a/test/can_invoke_libcxx.cpp b/test/can_invoke_libcxx.cpp index 942ba5c..b69a5de 100644 --- a/test/can_invoke_libcxx.cpp +++ b/test/can_invoke_libcxx.cpp @@ -41,6 +41,9 @@ /// described in the previous item; /// (1.5) - f(t1, t2, ..., tN) in all other cases. +//useless MSVC /Wall warnings +#pragma warning(disable: 4514 4711) + #include #include #include diff --git a/test/decorate_like.cpp b/test/decorate_like.cpp index b32f638..5bb8d57 100644 --- a/test/decorate_like.cpp +++ b/test/decorate_like.cpp @@ -7,6 +7,9 @@ Distributed under the Boost Software License, Version 1.0. */ +//useless MSVC /Wall warnings +#pragma warning(disable: 4514 4711) + #include #include #include diff --git a/test/has_varargs.cpp b/test/has_varargs.cpp index c58208c..652432c 100644 --- a/test/has_varargs.cpp +++ b/test/has_varargs.cpp @@ -6,6 +6,9 @@ Distributed under the Boost Software License, Version 1.0. */ +//useless MSVC /Wall warnings +#pragma warning(disable: 4514 4711) + #include #include #include diff --git a/test/result_of.cpp b/test/result_of.cpp index b7698ca..6405e12 100644 --- a/test/result_of.cpp +++ b/test/result_of.cpp @@ -6,6 +6,9 @@ Distributed under the Boost Software License, Version 1.0. */ +//useless MSVC /Wall warnings +#pragma warning(disable: 4514 4711) + #include #include #include diff --git a/test/weak_common_type.cpp b/test/weak_common_type.cpp index 9957234..5f321ba 100644 --- a/test/weak_common_type.cpp +++ b/test/weak_common_type.cpp @@ -6,6 +6,9 @@ Distributed under the Boost Software License, Version 1.0. */ +//useless MSVC /Wall warnings +#pragma warning(disable: 4514 4711) + #include #include #include