summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-12-20 23:55:23 +0000
committerCarl Hetherington <cth@carlh.net>2014-12-20 23:55:23 +0000
commit5134a4bdb62ff9ef535a377bb8e7b4106b3654ff (patch)
treee94b6b198f98b82e954143daa595417126b5215f /src
parent3596a6f73ba1afd7b688d7c22714f67f01d4e907 (diff)
Missing file.
Diffstat (limited to 'src')
-rw-r--r--src/lib/dcpomatic_assert.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/lib/dcpomatic_assert.h b/src/lib/dcpomatic_assert.h
new file mode 100644
index 000000000..9e81a3b6b
--- /dev/null
+++ b/src/lib/dcpomatic_assert.h
@@ -0,0 +1,22 @@
+/*
+ Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
+#include "exceptions.h"
+
+#define DCPOMATIC_ASSERT(x) if (!(x)) throw ProgrammingError (__FILE__, __LINE__);