From 34bb15107a71fa4c6ab2114013b1de6b38554e78 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Tue, 25 Jul 2017 08:23:51 +0100 Subject: Matrices now print properly --- include/YAGE/inputmanager.hpp | 2 -- test/matrixtest.cpp | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/YAGE/inputmanager.hpp b/include/YAGE/inputmanager.hpp index 7f49c3b3..fc9e5479 100644 --- a/include/YAGE/inputmanager.hpp +++ b/include/YAGE/inputmanager.hpp @@ -8,11 +8,9 @@ namespace yage class InputManager { - // member variables private: std::unordered_map key_map_; - // member functions public: void keyPressed(unsigned key); void keyReleased(unsigned key); diff --git a/test/matrixtest.cpp b/test/matrixtest.cpp index 8ee350f6..20f6fb6b 100644 --- a/test/matrixtest.cpp +++ b/test/matrixtest.cpp @@ -36,6 +36,8 @@ bool matrixAddition() yage::Matrix<4, 4, int> m3=m1+m2; + std::cout<