index
:
libcamera/vivid.git
pobrn/rebase
vivid
libcamera pipeline handler for VIVID
git repository hosting on libcamera.org
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
ipa
/
raspberrypi
/
data
/
imx219.json
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
/* 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__ */