apply clang-tidy modernize-use-override
[folly.git] / folly / LifoSem.h
index d66f77e5b1f1e231d263070406840bb50a3f2e82..f6b7bf024c956ea7620103b49b0841ac2258e83a 100644 (file)
@@ -91,7 +91,7 @@ typedef LifoSemImpl<> LifoSem;
 /// The exception thrown when wait()ing on an isShutdown() LifoSem
 struct ShutdownSemError : public std::runtime_error {
   explicit ShutdownSemError(const std::string& msg);
-  virtual ~ShutdownSemError() noexcept;
+  ~ShutdownSemError() noexcept override;
 };
 
 namespace detail {