reduce compiler warnings in USER-AWPMD

This commit is contained in:
Axel Kohlmeyer
2019-10-18 15:45:25 +02:00
parent 5b47b0b098
commit d684b70555
7 changed files with 20 additions and 26 deletions

View File

@ -24,7 +24,7 @@ class WavePacket;
///\en Template for v=der operation in \ref Wavepacket::int2phys_der()
template<class Type>
struct eq_second : public binary_function <Type, Type, Type> {
Type operator()(const Type& _Left, const Type& _Right) const{
Type operator()(const Type& /* _Left */, const Type& _Right) const{
return _Right;
}
};
@ -32,7 +32,7 @@ struct eq_second : public binary_function <Type, Type, Type> {
///\en Template for v=-der operation in \ref Wavepacket::int2phys_der()
template<class Type>
struct eq_minus_second : public binary_function <Type, Type, Type> {
Type operator()(const Type& _Left, const Type& _Right) const{
Type operator()(const Type& /* _Left */, const Type& _Right) const{
return -_Right;
}
};