From 1258417d54c85a2cbb98267b397c238070f28338 Mon Sep 17 00:00:00 2001 From: Logan Chien Date: Tue, 10 Jul 2012 04:07:28 -0700 Subject: Code cleanup: Use "const T*" instead of "T const*" Change-Id: I97d205df7d659e5670009df21b8c20b1d8224133 --- src/compiler_llvm/stub_compiler.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/compiler_llvm/stub_compiler.h') diff --git a/src/compiler_llvm/stub_compiler.h b/src/compiler_llvm/stub_compiler.h index 0ed626169b..9139accd68 100644 --- a/src/compiler_llvm/stub_compiler.h +++ b/src/compiler_llvm/stub_compiler.h @@ -41,12 +41,12 @@ class StubCompiler { public: StubCompiler(CompilationUnit* cunit, Compiler& compiler); - CompiledInvokeStub* CreateInvokeStub(bool is_static, char const* shorty); - CompiledInvokeStub* CreateProxyStub(char const* shorty); + CompiledInvokeStub* CreateInvokeStub(bool is_static, const char* shorty); + CompiledInvokeStub* CreateProxyStub(const char* shorty); private: CompilationUnit* cunit_; - Compiler const* compiler_; + const Compiler* compiler_; llvm::Module* module_; llvm::LLVMContext* context_; IRBuilder& irb_; -- cgit v1.2.3-59-g8ed1b