作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的编译器 (PGI) 不支持
#pragma once
但是我想包含的库(推力)使用它们。
这个问题有解决办法吗?
最佳答案
您可以使用guardonce将 #pragma Once
语句转换为标准 #ifndef ...
包括防护。
以下内容对我有用:
cd /tmp
git clone https://github.com/thrust/thrust.git
git clone https://github.com/cgmb/guardonce.git
cd guardonce
git checkout v2.0.0
python -m guardonce.once2guard -r "/tmp/thrust/thrust/"
这会在每个推力头文件中创建包含保护:
git diff /tmp/thrust
--- a/thrust/adjacent_difference.h
+++ b/thrust/adjacent_difference.h
@@ -19,7 +19,8 @@
* \brief Compute difference between consecutive elements of a range
*/
-#pragma once
+#ifndef ADJACENT_DIFFERENCE_H
+#define ADJACENT_DIFFERENCE_H
. . .
关于thrust - 编译器不支持#pragma Once,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29754434/
我是一名优秀的程序员,十分优秀!