| 75 | |
| 76 | private: |
| 77 | static std::string get_remainder(std::istream& is) |
| 78 | { |
| 79 | std::string remaining; |
| 80 | is.clear(); |
| 81 | is >> std::noskipws >> remaining; |
| 82 | return remaining; |
| 83 | } |
| 84 | |
| 85 | std::locale m_locale; |
| 86 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected