summaryrefslogtreecommitdiff
path: root/include/libcamera/compiler.h
blob: 02564f2f8b5c6a5c1ea927315d06b04a4ddd2d27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2021, Google Inc.
 *
 * compiler.h - Compiler support
 */

#pragma once

#if __cplusplus >= 201703L
#define __nodiscard		[[nodiscard]]
#else
#define __nodiscard
#endif