mirror of
https://github.com/boostorg/phoenix.git
synced 2026-02-18 02:12:09 +00:00
Suppress unused parameter warnings.
This commit is contained in:
@@ -53,7 +53,7 @@ namespace boost { namespace phoenix
|
||||
{};
|
||||
|
||||
template <typename T>
|
||||
bool is_val(T const &t)
|
||||
bool is_val(T const & /* t */)
|
||||
{
|
||||
return is_value<T>::value;
|
||||
}
|
||||
|
||||
@@ -208,7 +208,7 @@ namespace boost {
|
||||
|
||||
template <>
|
||||
bool is_a_unique_type_for_nil<a_unique_type_for_nil>
|
||||
(const a_unique_type_for_nil& n) {
|
||||
(const a_unique_type_for_nil& /* n */) {
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -1420,7 +1420,7 @@ bool operator<( a_unique_type_for_nil, const list<T>& b ) {
|
||||
}
|
||||
|
||||
template <class L>
|
||||
typename result<Cat(L,a_unique_type_for_nil)>::type operator()( const L& l, const a_unique_type_for_nil& n ) const
|
||||
typename result<Cat(L,a_unique_type_for_nil)>::type operator()( const L& l, const a_unique_type_for_nil& /* n */ ) const
|
||||
{
|
||||
listlike::EnsureListLike<L>();
|
||||
return l;
|
||||
|
||||
Reference in New Issue
Block a user