logging: rename the `DEBUG` log level to `DBG`
[folly.git] / folly / gen / ParallelMap.h
index e17acc93651c65a983f3b9b00a4728464956144c..450c62596dc8620f5f9e01d3f2dc3c043397c71c 100644 (file)
@@ -24,7 +24,7 @@ namespace gen {
 
 namespace detail {
 
-template<class Predicate>
+template <class Predicate>
 class PMap;
 
 } // namespace detail
@@ -38,8 +38,7 @@ class PMap;
  *       generator and the rest of the pipeline is executed in the
  *       caller thread.
  */
-template<class Predicate,
-         class PMap = detail::PMap<Predicate>>
+template <class Predicate, class PMap = detail::PMap<Predicate>>
   PMap pmap(Predicate pred = Predicate(), size_t nThreads = 0) {
   return PMap(std::move(pred), nThreads);
 }