Apply clang-format to folly/gen/ (partial: namespace)
[folly.git] / folly / gen / ParallelMap.h
index 4e9da1ef74de3e70e5ae3093b49549baa9621455..e17acc93651c65a983f3b9b00a4728464956144c 100644 (file)
 
 #include <folly/gen/Core.h>
 
-namespace folly { namespace gen {
+namespace folly {
+namespace gen {
 
 namespace detail {
 
 template<class Predicate>
 class PMap;
 
-}  // namespace detail
+} // namespace detail
 
 /**
  * Run `pred` in parallel in nThreads. Results are returned in the
@@ -42,7 +43,7 @@ template<class Predicate,
   PMap pmap(Predicate pred = Predicate(), size_t nThreads = 0) {
   return PMap(std::move(pred), nThreads);
 }
-
-}}  // namespaces
+} // namespace gen
+} // namespace folly
 
 #include <folly/gen/ParallelMap-inl.h>