From 7b969094cbae7ff73de6aa96bafeabd981d60f97 Mon Sep 17 00:00:00 2001 From: James Goppert Date: Fri, 26 Feb 2016 05:33:16 -0500 Subject: [PATCH] Fix for scalar type. --- matrix/Scalar.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matrix/Scalar.hpp b/matrix/Scalar.hpp index 0e722eed8c..24c99caea7 100644 --- a/matrix/Scalar.hpp +++ b/matrix/Scalar.hpp @@ -34,7 +34,7 @@ public: _value = other(0,0); } - Scalar(float other) + Scalar(Type other) { _value = other; }