summaryrefslogtreecommitdiff
path: root/include/libcamera/compiler.h
blob: dc56dbb8b792ba42ecf688ce60b1fd7921ca992e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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__ */