gpt4 book ai didi

c++ - 使用 C++ 编译时用于删除 `restrict` 关键字的宏

转载 作者:可可西里 更新时间:2023-11-01 18:27:29 24 4
gpt4 key购买 nike

我需要在 C++ 项目中包含一些最初用 C 编写的 header 。在头文件中,restrict keyword被使用,这会导致 C++ 的语法错误。

我正在寻找一个预处理器宏,它检查我是否正在使用 C++ 编译器进行编译,并在这种情况下删除 restrict 关键字。

最佳答案

#ifdef __cplusplus
#define restrict
#endif

应该这样做。 restrict 不是 C++ 中的关键字,因此 #define 将其设置为空是没有问题的。

或者,作为 Arne Mertz建议,更好的是,有

extern "C" {
#define restrict
// include C headers here
#undef restrict
}

在 C++ 源代码中包含 C header 的位置。

关于c++ - 使用 C++ 编译时用于删除 `restrict` 关键字的宏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13566807/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com