aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/YAGE/inputmanager.hpp2
-rw-r--r--test/matrixtest.cpp2
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<unsigned, bool> 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<<m3<<'\n';
+
return m3[1][1]==876;
}