aboutsummaryrefslogtreecommitdiff
path: root/cutl/exception.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-12-16 20:29:05 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-02-24 16:40:04 +0300
commit8e761289a2446367267c6c0d9a26e734f0f78306 (patch)
treefb495d8c18801f271d124ee48731f10df396ca89 /cutl/exception.hxx
parent4c8104756b92b9fa16b3a725e8a6aa620dfd606e (diff)
Get rid of legacy build systems and rename cutl/ to libcutl/
Diffstat (limited to 'cutl/exception.hxx')
-rw-r--r--cutl/exception.hxx23
1 files changed, 0 insertions, 23 deletions
diff --git a/cutl/exception.hxx b/cutl/exception.hxx
deleted file mode 100644
index 45e58fe..0000000
--- a/cutl/exception.hxx
+++ /dev/null
@@ -1,23 +0,0 @@
-// file : cutl/exception.hxx
-// license : MIT; see accompanying LICENSE file
-
-#ifndef CUTL_EXCEPTION_HXX
-#define CUTL_EXCEPTION_HXX
-
-#include <exception>
-
-#include <cutl/details/config.hxx>
-#include <cutl/details/export.hxx>
-
-namespace cutl
-{
- struct LIBCUTL_EXPORT exception: std::exception
- {
- // By default return the exception type name ( typeid (*this).name () ).
- //
- virtual char const*
- what () const LIBCUTL_NOTHROW_NOEXCEPT;
- };
-}
-
-#endif // CUTL_EXCEPTION_HXX