Consistency in namespace-closing comments
[folly.git] / folly / SharedMutex.h
index 163382ab34b8155dc7e0b60cd95f23ef4af76ce5..0968f5bad2d9516aa5594144ca83e11177d24ac3 100644 (file)
@@ -236,10 +236,11 @@ struct SharedMutexToken {
   uint16_t slot_;
 };
 
-template <bool ReaderPriority,
-          typename Tag_ = void,
-          template <typename> class Atom = std::atomic,
-          bool BlockImmediately = false>
+template <
+    bool ReaderPriority,
+    typename Tag_ = void,
+    template <typename> class Atom = std::atomic,
+    bool BlockImmediately = false>
 class SharedMutexImpl {
  public:
   static constexpr bool kReaderPriority = ReaderPriority;