| 3008 | public: |
| 3009 | FilePath() : pathname_("") { } |
| 3010 | FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } |
| 3011 | |
| 3012 | explicit FilePath(const std::string& pathname) : pathname_(pathname) { |
| 3013 | Normalize(); |
no outgoing calls
no test coverage detected