mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 17:29:14 +08:00
23 lines
324 B
C++
23 lines
324 B
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#if !defined __has_cpp_attribute
|
|
|
|
#define CPP_ATTRIBUTE_FALLTHROUGH
|
|
|
|
#else
|
|
|
|
#if !__has_cpp_attribute(fallthrough)
|
|
#define CPP_ATTRIBUTE_FALLTHROUGH
|
|
#else
|
|
#define CPP_ATTRIBUTE_FALLTHROUGH [[fallthrough]]
|
|
#endif
|
|
|
|
#endif
|