summaryrefslogtreecommitdiff
path: root/lib/igt_core.h
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2016-06-23 21:07:36 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2016-06-23 21:09:31 +0100
commitd86d6eb281ba99fca1bb39ad3dc05c5681dded5d (patch)
tree86b1b07818fb10e3abd967540f8a35f62c9e7e78 /lib/igt_core.h
parentbdad74d461979a64af5633ca6909d9835d5fafbe (diff)
Silence compiler warnings for expected and handled error conditions
Silly compiler emitting warnings that just cause people to break code attempting to silence the compiler. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'lib/igt_core.h')
-rw-r--r--lib/igt_core.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/igt_core.h b/lib/igt_core.h
index 59952331..64d823f6 100644
--- a/lib/igt_core.h
+++ b/lib/igt_core.h
@@ -297,6 +297,17 @@ void __igt_fail_assert(const char *domain, const char *file,
void igt_exit(void) __attribute__((noreturn));
/**
+ * igt_ignore_warn:
+ * @expr: condition to ignore
+ *
+ *
+ * Stops the compiler warning about an unused return value.
+ */
+static inline void igt_ignore_warn(bool value)
+{
+}
+
+/**
* igt_assert:
* @expr: condition to test
*