summaryrefslogtreecommitdiff
path: root/src/std/memory.tpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/std/memory.tpp')
-rw-r--r--src/std/memory.tpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/std/memory.tpp b/src/std/memory.tpp
index fbfcd32..1bfa473 100644
--- a/src/std/memory.tpp
+++ b/src/std/memory.tpp
@@ -1,5 +1,7 @@
#pragma once
+#include "memory.hpp"
+
#include "utils.hpp"
#include <Arduino.h>
@@ -20,9 +22,6 @@ memType *malloc_s(unsigned int size)
}
template <class Target>
-UniquePtr<Target>::UniquePtr() = default;
-
-template <class Target>
UniquePtr<Target>::UniquePtr(Target *target) : _target(target)
{
}