vecmem 1.14.0
Loading...
Searching...
No Matches
attributes.hpp
1/*
2 * VecMem project, part of the ACTS project (R&D line)
3 *
4 * (c) 2021-2023 CERN for the benefit of the ACTS project
5 *
6 * Mozilla Public License Version 2.0
7 */
8
9#pragma once
10
11#ifdef __has_cpp_attribute
12#if __has_cpp_attribute(nodiscard) >= 201603L
13#define VECMEM_NODISCARD [[nodiscard]]
14#else
15#define VECMEM_NODISCARD
16#endif
17#else
18#define VECMEM_NODISCARD
19#endif