Add override to overriden virtual methods, remove virtual keywords.
[oota-llvm.git] / include / llvm / MC / MCObjectStreamer.h
index 8d37c85b05859b249e8820bfc47e007622242814..a3a95fb53679186e1876e9c0d4fc8ff2a04831eb 100644 (file)
@@ -126,7 +126,7 @@ public:
   void EmitZeros(uint64_t NumBytes) override;
   void FinishImpl() override;
 
-  virtual bool mayHaveInstructions() const {
+  bool mayHaveInstructions() const override {
     return getCurrentSectionData()->hasInstructions();
   }
 };