So i'm trying to delete the 2D sq_matrix in the destructor. However, it's giving me a memory error:
    *** glibc detected *** ./hw1.out: free(): invalid pointer: 0x0000000000d6ccb0 ***
    ======= Backtrace: =========
    /lib64/libc.so.6[0x31dd675f3e]
    /lib64/libc.so.6[0x31dd678d8d]
    ./hw1.out[0x4011af]
    ./hw1.out[0x400f54]
    /lib64/libc.so.6(__libc_start_main+0xfd)[0x31dd61ed1d]
    ./hw1.out[0x400a69]
    ======= Memory map: ========
    00400000-00402000 r-xp 00000000 fd:02 99359246    
/*                        some memory map here  */
    Aborted (core dumped)
Here's the .h file I put my code in:
#ifndef SQUAREMATRIX_H
#define SQUAREMATRIX_H
#include <iostream>
using namespace std;
template<class T>
    class SquareMatrix{
     public:
      int size;
      T** sq_matrix;
      SquareMatrix(int s){
          size = s;
          sq_matrix = new T*[size];
          for(int h = 0; h < size; h++){
            sq_matrix[h] = new T[size];
          }
      }
      ~SquareMatrix(){
        for(int h = 0; h < size; h++){
            delete[] sq_matrix[h];
        }
         delete[] sq_matrix; 
      } 
      void MakeEmpty(){
         //PRE: n < width of sq matrix
         //POST: first n columns and rows of sq_matrix is zero
      }
      void StoreValue(int i, int j, double val){
          //PRE: i < width; j < height
          //POST: sq_matrix[i][j] has a non-null value
      }
      void Add(SquareMatrix s){
         //PRE: this.SquareMatrix and s are of the same width and height
         //POST: this.SquareMatrix + s
      }
      void Subtract(SquareMatrix s){
         //PRE: this.SquareMatrix and s are of the same width and height
         //POST: this.SquareMatrix - s
      }
      void Copy(SquareMatrix s){
         //PRE: s is an empty matrix
         //POST: s is a ixi matrix identical to this.SquareMatrix
      }
    };
So what I basically did is create a 2d array outside of the constructor and allocated memory within the constructor. Then, I tried to delete the pointer in the destructor, but it still gives me an error. Here's my main method:
#include <iostream>
#include "SquareMatrix.h"
using namespace std;
int main(){
  int size;
  int val;
  cout << "Enter the width and height of the square matrix: ";
  cin >> size;
  SquareMatrix<int> sq1(size);
  SquareMatrix<int> sq2(size);
  return 0;
}
Thanks!
 
     
    