summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-09-09 23:54:09 +0200
committerCarl Hetherington <cth@carlh.net>2020-09-09 23:54:09 +0200
commita6e9959aeceb10001d3a1f8c62b00132cfec7c54 (patch)
tree272a49c8a88c8fe308393205516840d86fb1c9f2 /src
parent9f6c0e4575bad2bc45edb8cf9afa5716b9988728 (diff)
Missing namespace.
Diffstat (limited to 'src')
-rw-r--r--src/dcp_assert.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dcp_assert.h b/src/dcp_assert.h
index bdd8947b..d8bf20e6 100644
--- a/src/dcp_assert.h
+++ b/src/dcp_assert.h
@@ -33,4 +33,4 @@
#include "exceptions.h"
-#define DCP_ASSERT(x) if (!(x)) throw ProgrammingError (__FILE__, __LINE__);
+#define DCP_ASSERT(x) if (!(x)) throw dcp::ProgrammingError (__FILE__, __LINE__);