在编译前检查变量的声明
我用 C/C++ 编写代码并使用 vim 进行编辑。我发现大多数时候在编译完成代码后,我会收到未声明的变量错误。这些是我在使用它们之前忘记声明的变量。
我想知道 vim 是否有任何实用程序可以用来测试新代码中的所有变量是否在使用前声明。它将节省我大量的编译时间。
谢谢,
I code in C/C++ and use vim for editing. I have found that most of times after completing my code when I compile, I get undeclared variables error. These are variables which I forgot to declare before using them.
I want to know is there any utility with vim which I can use for testing if all variables in new code are declared before use. It will save my considerable compile time.
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
clang-complete 插件 可以做到这一点。
查看其
clang_complete-copen
和clang_complete-periodic_quickfix
配置变量以启用检查。The clang-complete plugin can do this.
Have a look at its
clang_complete-copen
andclang_complete-periodic_quickfix
configuration variables to enable the checks.