Matrix header guard

This commit is contained in:
LeLeLeLeto 2024-12-31 02:08:27 +01:00
parent db04387314
commit 81515a50d2

View File

@ -1,3 +1,6 @@
#ifndef MATRICES_H_
#define MATRICES_H_
#include <string>
#include <vector>
#include <cassert>
@ -258,4 +261,6 @@ void Matrix::Randomize(float min, float max){
this->values[m][n] = min + ((float)rand()/(float)(RAND_MAX)) * (max - min);
}
}
}
}
#endif