Repository: incubator-impala
Updated Branches:
  refs/heads/master 290db20db -> d21728c0a


IMPALA-4397 addendum: remove stray semicolon

Change-Id: Ie16e403ae0eb657f0614a1a90b0556f9f1d1056e
Reviewed-on: http://gerrit.cloudera.org:8080/5261
Tested-by: Impala Public Jenkins
Reviewed-by: Tim Armstrong <[email protected]>


Project: http://git-wip-us.apache.org/repos/asf/incubator-impala/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-impala/commit/d21728c0
Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/d21728c0
Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/d21728c0

Branch: refs/heads/master
Commit: d21728c0ae4ddcd1a063341d5f2db98534aedf3a
Parents: 290db20
Author: Tim Armstrong <[email protected]>
Authored: Tue Nov 29 11:35:08 2016 -0800
Committer: Tim Armstrong <[email protected]>
Committed: Wed Nov 30 21:32:25 2016 +0000

----------------------------------------------------------------------
 be/src/codegen/mcjit-mem-mgr.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/d21728c0/be/src/codegen/mcjit-mem-mgr.h
----------------------------------------------------------------------
diff --git a/be/src/codegen/mcjit-mem-mgr.h b/be/src/codegen/mcjit-mem-mgr.h
index 6982cef..163249e 100644
--- a/be/src/codegen/mcjit-mem-mgr.h
+++ b/be/src/codegen/mcjit-mem-mgr.h
@@ -36,7 +36,7 @@ namespace impala {
 /// We also use it to track how much memory is allocated for compiled code.
 class ImpalaMCJITMemoryManager : public llvm::SectionMemoryManager {
  public:
-  ImpalaMCJITMemoryManager() : bytes_allocated_(0), bytes_tracked_(0){};
+  ImpalaMCJITMemoryManager() : bytes_allocated_(0), bytes_tracked_(0){}
 
   virtual uint64_t getSymbolAddress(const std::string& name) override {
     if (name == "__dso_handle") return 
reinterpret_cast<uint64_t>(&__dso_handle);

Reply via email to