diff options
author | Alok Hota <[email protected]> | 2018-05-16 11:14:17 -0500 |
---|---|---|
committer | George Kyriazis <[email protected]> | 2018-05-17 10:52:21 -0500 |
commit | 7926d18fa5df028f73fbbb8f30f81cb7f3c79901 (patch) | |
tree | 8a29668f1a2f8f681644d6ccf0e14c1a62d824ee | |
parent | b0acc3a5628c6c6dd669cbb7cff2d974b175605e (diff) |
swr/rast: Remove unneeded virtual from methods
Reviewed-By: George Kyriazis <[email protected]>
-rw-r--r-- | src/gallium/drivers/swr/rasterizer/jitter/JitManager.h | 4 |
1 files 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 54a25d89139..152776a6513 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; |