aboutsummaryrefslogtreecommitdiffstats
path: root/include/error.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/error.hpp')
-rw-r--r--include/error.hpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/error.hpp b/include/error.hpp
index ef61c91..c435889 100644
--- a/include/error.hpp
+++ b/include/error.hpp
@@ -4,9 +4,12 @@
#include <string>
#include <iostream>
-inline void UserError(const std::string& why)
+#define UserError(w) _UserError(__FILE__, __LINE__, w)
+#define UserAssert(c, e) if (!(c)) { UserError(e); }
+
+inline void _UserError(const char* file, int line, const std::string& why)
{
- std::cout << "User error: " << why << "!\n";
+ std::cout << file << ':' << line << ": error: " << why << "!\n";
abort();
}