| # | Line 57 | Line 57 | namespace OpenMD { | |
|---|---|---|
| 57 | class TupleMatcher { | |
| 58 | static ReturnType match(const std::map<TupleType, ReturnType>& container, const TupleType& t) { | |
| 59 | typename std::map<TupleType, ReturnType>::iterator i; | |
| 60 | < | |
| 60 | > | |
| 61 | i = container.find(t); | |
| 62 | if (i != container.end()) { | |
| 63 | return i->second; | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines |
| > | Changed lines |