Kaydet (Commit) b91061f8 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

WaE: '&&' within '||'

üst 3afbf314
--- misc/boost_1_44_0/boost/spirit/home/classic/core/composite/directives.hpp
+++ misc/build/boost_1_44_0/boost/spirit/home/classic/core/composite/directives.hpp
@@ -364,7 +364,7 @@
if (l || r)
{
- if (l.length() < r.length() && l || !r)
+ if ((l.length() < r.length() && l) || !r)
{
scan.first = save;
return l;
......@@ -69,6 +69,7 @@ PATCH_FILES+=boost.windows.patch
# Help static analysis tools (see SAL_UNUSED_PARAMETER in sal/types.h):
.IF "$(COM)" == "GCC"
PATCH_FILES += boost_1_44_0-unused-parameters.patch
PATCH_FILES += boost_1_44_0-logical-op-parentheses.patch
.END
# Backporting fixes for the GCC 4.7 -std=c++11 mode from Boost 1.48.0:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment