summaryrefslogtreecommitdiff
path: root/include/libcamera/base/compiler.h
blob: fda8fdfdc543f86c5554e38ef790c00d72d60389 (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 support
 */

#pragma once

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