Formatting for template parameters
[folly.git] / folly / experimental / StringKeyedSet.h
index 805e53146ba1bdce55545156c223e36ed5bfda41..a4befc0172c39968efe36f9ed11287b6585200e9 100644 (file)
@@ -34,8 +34,9 @@ namespace folly {
  * It uses kind of hack: string pointed by StringPiece is copied when
  * StringPiece is inserted into set
  */
-template <class Compare = std::less<StringPiece>,
-          class Alloc = std::allocator<StringPiece>>
+template <
+    class Compare = std::less<StringPiece>,
+    class Alloc = std::allocator<StringPiece>>
 class StringKeyedSetBase
     : private std::set<StringPiece, Compare, Alloc> {
  private: