diff options
Diffstat (limited to 'base/file_path.cc')
-rw-r--r-- | base/file_path.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/base/file_path.cc b/base/file_path.cc index 98cbfde..094c699 100644 --- a/base/file_path.cc +++ b/base/file_path.cc @@ -1232,3 +1232,7 @@ FilePath FilePath::NormalizePathSeparators() const { return *this; #endif } + +void PrintTo(const FilePath& path, std::ostream* out) { + *out << path.value(); +} |