You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ec...@apache.org on 2013/10/28 17:39:36 UTC

git commit: ACCUMULO-1819 fix warning about useless assignment

Updated Branches:
  refs/heads/master 8fb6c8607 -> 9e8370253


ACCUMULO-1819 fix warning about useless assignment


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/9e837025
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/9e837025
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/9e837025

Branch: refs/heads/master
Commit: 9e8370253e8471b66a6ed5b871f988481d930731
Parents: 8fb6c86
Author: Eric Newton <er...@gmail.com>
Authored: Mon Oct 28 12:39:36 2013 -0400
Committer: Eric Newton <er...@gmail.com>
Committed: Mon Oct 28 12:39:51 2013 -0400

----------------------------------------------------------------------
 server/src/main/c++/nativeMap/NativeMap.h | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/9e837025/server/src/main/c++/nativeMap/NativeMap.h
----------------------------------------------------------------------
diff --git a/server/src/main/c++/nativeMap/NativeMap.h b/server/src/main/c++/nativeMap/NativeMap.h
index 85060d6..bc44a98 100644
--- a/server/src/main/c++/nativeMap/NativeMap.h
+++ b/server/src/main/c++/nativeMap/NativeMap.h
@@ -37,7 +37,6 @@ struct NativeMapData {
 
 	NativeMapData(int blockSize, int bigBlockSize):lba(new LinkedBlockAllocator(blockSize, bigBlockSize)),
 							rowmap(RowMap(std::less<Field>(), BlockAllocator<std::pair<Field, ColumnMap> >(lba))){
-		this->lba = lba;
 	}
 
 	~NativeMapData(){