diff options
Diffstat (limited to 'src/interfaces/matrix.hpp')
-rw-r--r-- | src/interfaces/matrix.hpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/interfaces/matrix.hpp b/src/interfaces/matrix.hpp index ab5f40b..72d18d9 100644 --- a/src/interfaces/matrix.hpp +++ b/src/interfaces/matrix.hpp @@ -3,7 +3,6 @@ #include "interfaces/bounds.hpp" #include "interfaces/vector2.hpp" -#include <functional> #include <memory> template <typename Element> @@ -46,5 +45,4 @@ public: }; template <typename Element> -using IMatrixFactory = - std::function<std::shared_ptr<IMatrix<Element>>(const IBounds &bounds)>; +using IMatrixFactory = std::shared_ptr<IMatrix<Element>> (*)(const IBounds &bounds); |