Consistency in namespace-closing comments
[folly.git] / folly / ExceptionWrapper.h
index 5f1d65a2cfa5cee6881a9ee7b62f39527fb52ac5..489d158a9c3b214de9020066e04b98f3a06b6a9f 100644 (file)
@@ -643,7 +643,7 @@ inline exception_wrapper try_and_catch_(F&& f) {
     return exception_wrapper(std::current_exception(), ex);
   }
 }
-} // detail
+} // namespace detail
 
 //! `try_and_catch` is a simple replacement for `try {} catch(){}`` that allows
 //! you to specify which derived exceptions you would like to catch and store in
@@ -684,7 +684,7 @@ template <typename... Exceptions, typename F>
 exception_wrapper try_and_catch(F&& fn) {
   return detail::try_and_catch_<F, Exceptions...>(std::forward<F>(fn));
 }
-} // folly
+} // namespace folly
 
 #include <folly/ExceptionWrapper-inl.h>