Consistency in namespace-closing comments
[folly.git] / folly / Hash.h
index 78bb5f4819135f7aaf9eabf13a74552dc78c88a1..211dc44ed37838896036fca50a5f4e08cb98079d 100644 (file)
@@ -505,7 +505,7 @@ namespace std {
   // items in the pair.
   template <typename T1, typename T2>
   struct hash<std::pair<T1, T2> > {
-  public:
+   public:
     size_t operator()(const std::pair<T1, T2>& x) const {
       return folly::hash::hash_combine(x.first, x.second);
     }