summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/NeKit/Function.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/NeKit/Function.h')
-rw-r--r--src/kernel/NeKit/Function.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/kernel/NeKit/Function.h b/src/kernel/NeKit/Function.h
index f7e47973..dfa8608a 100644
--- a/src/kernel/NeKit/Function.h
+++ b/src/kernel/NeKit/Function.h
@@ -27,8 +27,6 @@ class Function final {
T operator()(Args&&... args) { return fFn(args...); }
- T Call(Args&&... args) { return fFn(args...); }
-
explicit operator bool() { return fFn; }
bool operator!() { return !fFn; }