Get *=default*ed default constructors
[folly.git] / folly / ExceptionWrapper.h
index 3f9f9688f754f8ce47a389a6308fca1d5a9b532e..a99e84d95a8f35e9deb95665275efe28130fa47a 100644 (file)
@@ -434,7 +434,7 @@ class try_and_catch<LastException, Exceptions...> :
 template<>
 class try_and_catch<> : public exception_wrapper {
  public:
-  try_and_catch() {}
+  try_and_catch() = default;
 
  protected:
   template <typename F>