template< -> template <
[folly.git] / folly / test / FBVectorBenchmark.cpp
index ca327cdf0d5917b07979d110a44354e401fe03bb..504c1c51d0bea37b6fa7256c2f0e744a58cc666f 100644 (file)
@@ -69,13 +69,13 @@ std::list<char> RandomList(unsigned int maxSize) {
   return lst;
 }
 
-template<class T> T randomObject();
+template <class T> T randomObject();
 
-template<> int randomObject<int>() {
+template <> int randomObject<int>() {
   return random(0, 1024);
 }
 
-template<> folly::fbstring randomObject<folly::fbstring>() {
+template <> folly::fbstring randomObject<folly::fbstring>() {
   folly::fbstring result;
   randomString(&result);
   return result;