| 3259 | public: |
| 3260 | FilePath() : pathname_("") { } |
| 3261 | FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } |
| 3262 | |
| 3263 | explicit FilePath(const char* pathname) : pathname_(pathname) { |
| 3264 | Normalize(); |
no outgoing calls
no test coverage detected