| # | Line 64 | Line 64 | namespace OpenMD { | |
|---|---|---|
| 64 | ||
| 65 | ||
| 66 | template<typename T> | |
| 67 | < | struct logical_xor :public std::binary_function<T, T, bool> { |
| 68 | < | RealType operator()(T x, T y) { return x ^ y; } |
| 67 | > | struct logical_xor : public std::binary_function<T, T, bool> { |
| 68 | > | T operator()(const T& x, const T& y) { return x ^ y; } |
| 69 | }; | |
| 70 | ||
| 71 | } | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines |
| > | Changed lines |