From 621bad7474b1b80e2601e9559472783c51e99000 Mon Sep 17 00:00:00 2001 From: q66 Date: Mon, 23 Apr 2018 21:24:46 +0200 Subject: [PATCH] forgot to add file --- src/build_make.cc | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/build_make.cc diff --git a/src/build_make.cc b/src/build_make.cc new file mode 100644 index 0000000..b597225 --- /dev/null +++ b/src/build_make.cc @@ -0,0 +1,15 @@ +/* Build system implementation bits. + * + * This file is part of libostd. See COPYING.md for futher information. + */ + +#include "ostd/build/make.hh" + +namespace ostd { +namespace build { + +/* place the vtable in here */ +make_task::~make_task() {} + +} /* namespace build */ +} /* namespace ostd */