作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用的是相当过时的 GoogleTest 版本,并使用 hack 进行自定义打印,可在此处找到:How to send custom message in Google C++ Testing Framework?
我的来源包含来自上面链接的以下代码
namespace testing
{
namespace internal
{
enum GTestColor {
COLOR_DEFAULT,
COLOR_RED,
COLOR_GREEN,
COLOR_YELLOW
};
extern void ColoredPrintf(GTestColor color, const char* fmt, ...);
}
}
#define PRINTF(...) do { testing::internal::ColoredPrintf(testing::internal::COLOR_GREEN, "[ ] "); testing::internal::ColoredPrintf(testing::internal::COLOR_YELLOW, __VA_ARGS__); } while(0)
我已将我的项目中的 GoogleTest 源更新为主版本,但现在出现链接错误,指出 ColoredPrintf 未定义。
error LNK2019: unresolved external symbol "void __cdecl testing::internal::ColoredPrintf(enum testing::internal::`anonymous namespace'::GTestColor,char const *,...)" (?ColoredPrintf@internal@testing@@YAXW4GTestColor@?A0x313d419f@12@PEBDZZ) referenced in function
学习新鲜gtest.cc
表明他们已经改变了GTestColor
枚举类并将其放入命名空间 testing::internal
内的匿名命名空间中: https://github.com/google/googletest/blob/master/googletest/src/gtest.cc#L3138
我已将源代码中的代码段更改为:
namespace testing {
namespace internal
{
enum class GTestColor { kDefault, kRed, kGreen, kYellow };
extern void ColoredPrintf(GTestColor color, const char* fmt, ...);
}
}
作为快速修复,我删除了 namespace { ... }
周围GTestColor
在gtest.cc
.
问题:是否可以避免编辑 gtest.cc
并且仍然可以访问它们的功能?
最佳答案
您不能访问编译单元之外的匿名命名空间中的成员。另见 this question .
根据您的用例,备选方案可能是:
关于c++ - ColoredPrintf 在最近的 googletest 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63464085/
我使用的是相当过时的 GoogleTest 版本,并使用 hack 进行自定义打印,可在此处找到:How to send custom message in Google C++ Testing Fr
我是一名优秀的程序员,十分优秀!