Apply clang-format to folly/experimental/io/
[folly.git] / folly / experimental / io / FsUtil.cpp
index 519c19e1e8896916da77e2d93017b03ad6e95820..a336ede9510cd3aa0df1113608ee034eaf34d482 100644 (file)
@@ -40,7 +40,7 @@ bool skipPrefix(const path& pth, const path& prefix, path::const_iterator& it) {
   }
   return true;
 }
-}  // namespace
+} // namespace
 
 bool starts_with(const path& pth, const path& prefix) {
   path::const_iterator it;
@@ -52,7 +52,8 @@ path remove_prefix(const path& pth, const path& prefix) {
   if (!skipPrefix(pth, prefix, it)) {
     throw filesystem_error(
         "Path does not start with prefix",
-        pth, prefix,
+        pth,
+        prefix,
         bsys::errc::make_error_code(bsys::errc::invalid_argument));
   }
 
@@ -72,5 +73,5 @@ path executable_path() {
   return read_symlink("/proc/self/exe");
 }
 
-}  // namespace fs
-}  // namespace folly
+} // namespace fs
+} // namespace folly