aboutsummaryrefslogtreecommitdiff
path: root/src/util/function.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/function.hpp')
-rw-r--r--src/util/function.hpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/util/function.hpp b/src/util/function.hpp
new file mode 100644
index 0000000..13f5356
--- /dev/null
+++ b/src/util/function.hpp
@@ -0,0 +1,11 @@
+#pragma once
+
+template <typename>
+struct Signature
+{
+};
+
+template <typename Function>
+constexpr auto normalize_lambda(Function &&func) noexcept;
+
+#include "function.tpp"