summaryrefslogtreecommitdiff
path: root/modules/codec/c++/math.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/codec/c++/math.hpp')
-rw-r--r--modules/codec/c++/math.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/codec/c++/math.hpp b/modules/codec/c++/math.hpp
new file mode 100644
index 0000000..dd9e49b
--- /dev/null
+++ b/modules/codec/c++/math.hpp
@@ -0,0 +1,12 @@
+#pragma once
+
+#include "data_math.hpp"
+
+namespace saw {
+namespace math {
+template<typename T, typename Encoding = encode::Native>
+data<typename T::InnerType,Encoding> norm_2(const data<T,Encoding>& d){
+ return {};
+}
+}
+}