summaryrefslogtreecommitdiff
path: root/src/user/include/cxx/structs/duple.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/user/include/cxx/structs/duple.h')
-rw-r--r--src/user/include/cxx/structs/duple.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/user/include/cxx/structs/duple.h b/src/user/include/cxx/structs/duple.h
index 874e4f6..0b23c92 100644
--- a/src/user/include/cxx/structs/duple.h
+++ b/src/user/include/cxx/structs/duple.h
@@ -4,6 +4,7 @@
template<class at, class bt>
class duple {
public:
+ duple() : a(), b() {}
duple(at a, bt b)
: a(a), b(b) {}
at a;