swr/rast: Remove unneeded virtual from methods
authorAlok Hota <alok.hota@intel.com>
Wed, 16 May 2018 16:14:17 +0000 (11:14 -0500)
committerGeorge Kyriazis <george.kyriazis@intel.com>
Thu, 17 May 2018 15:52:21 +0000 (10:52 -0500)
Reviewed-By: George Kyriazis <george.kyriazis@intel.com>
src/gallium/drivers/swr/rasterizer/jitter/JitManager.h

index 54a25d8..152776a 100644 (file)
@@ -108,12 +108,12 @@ public:
     }
 
     /// notifyObjectCompiled - Provides a pointer to compiled code for Module M.
-    virtual void notifyObjectCompiled(const llvm::Module *M, llvm::MemoryBufferRef Obj);
+    void notifyObjectCompiled(const llvm::Module *M, llvm::MemoryBufferRef Obj) override;
 
     /// Returns a pointer to a newly allocated MemoryBuffer that contains the
     /// object which corresponds with Module M, or 0 if an object is not
     /// available.
-    virtual std::unique_ptr<llvm::MemoryBuffer> getObject(const llvm::Module* M);
+    std::unique_ptr<llvm::MemoryBuffer> getObject(const llvm::Module* M) override;
 
 private:
     std::string mCpu;