diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-12-10 08:52:34 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-12-10 09:36:35 +0200 |
commit | 6981889b0ab9618defa81d7a59f87aada05adc5e (patch) | |
tree | 174624e71a4f614508244aeed77d7da5ea924964 /boost | |
parent | 56ec8f4ef1935af73b874ab11928bac4c867b40a (diff) |
WaE: unused parameter
Change-Id: Idd9e548ac4258332d741bd7bb1d39d521d8e5c7a
Diffstat (limited to 'boost')
-rw-r--r-- | boost/boost_1_44_0-clang-warnings.patch | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/boost/boost_1_44_0-clang-warnings.patch b/boost/boost_1_44_0-clang-warnings.patch index f48910e91074..cf7603adb0a1 100644 --- a/boost/boost_1_44_0-clang-warnings.patch +++ b/boost/boost_1_44_0-clang-warnings.patch @@ -97,4 +97,14 @@ } } - +--- misc/boost_1_44_0/boost/random/discard_block.hpp ++++ misc/build/boost_1_44_0/boost/random/discard_block.hpp +@@ -76,7 +76,7 @@ + + result_type min BOOST_PREVENT_MACRO_SUBSTITUTION () const { return (_rng.min)(); } + result_type max BOOST_PREVENT_MACRO_SUBSTITUTION () const { return (_rng.max)(); } +- static bool validation(result_type x) { return true; } // dummy ++ static bool validation(result_type) { return true; } // dummy + + #ifndef BOOST_NO_OPERATORS_IN_NAMESPACE + |