]> git.donarmstrong.com Git - mothur.git/blobdiff - fullmatrix.cpp
fixed memory leak of groupmap in reads
[mothur.git] / fullmatrix.cpp
index 8eb48139a85c910e74881c15a050b8064c39dfbd..f4acd78c1132022b9bc22a6c878febe5a4df8c1c 100644 (file)
@@ -75,7 +75,7 @@ void FullMatrix::readSquareMatrix(ifstream& filehandle) {
        try {
        
                Progress* reading;
-               reading = new Progress("Reading matrix:    ", numSeqs * numSeqs);
+               reading = new Progress("Reading matrix:     ", numSeqs * numSeqs);
                
                int count = 0;
                
@@ -114,7 +114,7 @@ void FullMatrix::readSquareMatrix(ifstream& filehandle) {
 void FullMatrix::readLTMatrix(ifstream& filehandle) {
        try {
                Progress* reading;
-               reading = new Progress("Reading matrix:    ", numSeqs * (numSeqs - 1) / 2);
+               reading = new Progress("Reading matrix:     ", numSeqs * (numSeqs - 1) / 2);
                
                int count = 0;
                float distance;