summaryrefslogtreecommitdiff
path: root/starts/meaning-vm/level-0/value.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'starts/meaning-vm/level-0/value.hpp')
-rw-r--r--starts/meaning-vm/level-0/value.hpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/starts/meaning-vm/level-0/value.hpp b/starts/meaning-vm/level-0/value.hpp
deleted file mode 100644
index ff704bf..0000000
--- a/starts/meaning-vm/level-0/value.hpp
+++ /dev/null
@@ -1,25 +0,0 @@
-#pragma once
-
-#include "common.hpp"
-
-#include "concept.hpp"
-
-namespace intellect {
-namespace level0 {
-
-template <typename T>
-struct value : public concept
-{
- value(T const & val) : data(val) { }
-
- value(value<T> const & val) = default;
-
- operator T&() { return data; }
- operator T const &() const { return data; }
-
- T data;
-};
-
-
-}
-}