From 8e761289a2446367267c6c0d9a26e734f0f78306 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 16 Dec 2020 20:29:05 +0300 Subject: Get rid of legacy build systems and rename cutl/ to libcutl/ --- libcutl/fs/exception.cxx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 libcutl/fs/exception.cxx (limited to 'libcutl/fs/exception.cxx') diff --git a/libcutl/fs/exception.cxx b/libcutl/fs/exception.cxx new file mode 100644 index 0000000..49fb9fe --- /dev/null +++ b/libcutl/fs/exception.cxx @@ -0,0 +1,16 @@ +// file : libcutl/fs/exception.cxx +// license : MIT; see accompanying LICENSE file + +#include + +namespace cutl +{ + namespace fs + { + char const* error:: + what () const noexcept + { + return "filesystem error"; + } + } +} -- cgit v1.1