summaryrefslogtreecommitdiff
path: root/include/libcamera/compiler.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/libcamera/compiler.h')
-rw-r--r--include/libcamera/compiler.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/libcamera/compiler.h b/include/libcamera/compiler.h
new file mode 100644
index 00000000..dc56dbb8
--- /dev/null
+++ b/include/libcamera/compiler.h
@@ -0,0 +1,16 @@
+/* SPDX-License-Identifier: LGPL-2.1-or-later */
+/*
+ * Copyright (C) 2021, Google Inc.
+ *
+ * compiler.h - Compiler support
+ */
+#ifndef __LIBCAMERA_COMPILER_H__
+#define __LIBCAMERA_COMPILER_H__
+
+#if __cplusplus >= 201703L
+#define __nodiscard [[nodiscard]]
+#else
+#define __nodiscard
+#endif
+
+#endif /* __LIBCAMERA_COMPILER_H__ */