reduce compiler warnings in USER-AWPMD
This commit is contained in:
@ -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;
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user