template< -> template <
[folly.git] / folly / PicoSpinLock.h
index f0a7d12e32c730d824d9ecdd7109a5f7dde32d81..4280e653d6b2014c5710b69c0513b5a7c73067ae 100644 (file)
@@ -69,7 +69,7 @@ namespace folly {
  * have a real constructor because we want this to be a POD type so we
  * can put it into packed structs.
  */
-template<class IntType, int Bit = sizeof(IntType) * 8 - 1>
+template <class IntType, int Bit = sizeof(IntType) * 8 - 1>
 struct PicoSpinLock {
   // Internally we deal with the unsigned version of the type.
   typedef typename std::make_unsigned<IntType>::type UIntType;