summaryrefslogtreecommitdiff
path: root/source/application/main/include/DataStructures.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/application/main/include/DataStructures.hpp')
-rw-r--r--source/application/main/include/DataStructures.hpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/source/application/main/include/DataStructures.hpp b/source/application/main/include/DataStructures.hpp
index d369cb6..0616839 100644
--- a/source/application/main/include/DataStructures.hpp
+++ b/source/application/main/include/DataStructures.hpp
@@ -17,8 +17,6 @@
#ifndef DATA_STRUCTURES_HPP
#define DATA_STRUCTURES_HPP
-#include "hal.h"
-
#include <iterator>
namespace arm {
@@ -50,7 +48,7 @@ namespace app {
Array2d(unsigned rows, unsigned cols): m_rows(rows), m_cols(cols)
{
if (rows == 0 || cols == 0) {
- printf_err("Array2d constructor has 0 size.\n");
+ printf("Array2d constructor has 0 size.\n");
m_data = nullptr;
return;
}