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 <string>
#include <vector> #include <vector>
#include <cassert> #include <cassert>
@ -259,3 +262,5 @@ void Matrix::Randomize(float min, float max){
} }
} }
} }
#endif