| 284 | { |
| 285 | public: |
| 286 | bool operator()(const std::pair<vtkStdString, vtkVariant>& a, |
| 287 | const std::pair<vtkStdString, vtkVariant>& b) const |
| 288 | { |
| 289 | if (a.first != b.first) |
| 290 | { |
| 291 | return a.first < b.first; |
| 292 | } |
| 293 | return vtkVariantLessThan()(a.second, b.second); |
| 294 | } |
| 295 | }; |
| 296 | |
| 297 | //------------------------------------------------------------------------------ |
nothing calls this directly
no test coverage detected