Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 Qt 中设置 Google 测试,但遇到了多个问题,其中最烦人的是“uint 未在此范围内声明”。直到最近才编译,但现在它决定找不到它。
这里有两点需要注意:
1)您可以使用Qt 类型,即:quint8/16/32/64,具体取决于您需要的范围。
2) 更重要的是,您在评论中粘贴了一个 uint 循环计数器。为此,您甚至不应该使用 unsigned int,而是 size_t。
for (size_t i; i < x.cols; ++i);