Module: Mesa
Branch: master
Commit: 7926d18fa5df028f73fbbb8f30f81cb7f3c79901
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=7926d18fa5df028f73fbbb8f30f81cb7f3c79901

Author: Alok Hota <alok.h...@intel.com>
Date:   Wed May 16 11:14:17 2018 -0500

swr/rast: Remove unneeded virtual from methods

Reviewed-By: George Kyriazis <george.kyria...@intel.com>

---

 src/gallium/drivers/swr/rasterizer/jitter/JitManager.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/gallium/drivers/swr/rasterizer/jitter/JitManager.h 
b/src/gallium/drivers/swr/rasterizer/jitter/JitManager.h
index 54a25d8913..152776a651 100644
--- a/src/gallium/drivers/swr/rasterizer/jitter/JitManager.h
+++ b/src/gallium/drivers/swr/rasterizer/jitter/JitManager.h
@@ -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;

_______________________________________________
mesa-commit mailing list
mesa-commit@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to