logging: add a LogConfig class and parsing code
[folly.git] / folly / DynamicConverter.h
index e63bf842666c58ad6d19db25b262cfd736e13a6a..55c9b2e591605e5dea4052a9aeeab29c9d061cb5 100644 (file)
 #include <folly/dynamic.h>
 
 namespace folly {
-  template <typename T> T convertTo(const dynamic&);
-  template <typename T> dynamic toDynamic(const T&);
-}
+template <typename T>
+T convertTo(const dynamic&);
+template <typename T>
+dynamic toDynamic(const T&);
+} // namespace folly
 
 /**
  * convertTo returns a well-typed representation of the input dynamic.