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.
我正在尝试使用 Uncrustify 但在 xcode 中工作时所有配置都破坏了我的代码
std::vector<int> a;
变成
std: : vector<int> a;
有没有办法防止这种情况,以便 :: 保持在一起
此错误的原因是 Uncrustify 参数中的语言设置错误。
将 -l OC 更改为 -l CPP 解决了问题