为什么 jIndent 会破坏我的 C++句法?
我遇到了一个奇怪的问题,jIndent 似乎正在删除“新”名称和类型名称之间的空格,从而破坏了代码。
例如,
Ball* b = new Ball[numBalls]; ---> Ball* b = newBall[numBalls];
有人知道为什么吗?有人可以导出他们的工作设置并将其发布在这里吗?
谢谢。
I've got a weird problem where jIndent seems to be stripping spaces between 'new' and type names, thus breaking the code.
For example,
Ball* b = new Ball[numBalls]; ---> Ball* b = newBall[numBalls];
Has anyone got any idea why? Could someone please export their working settings and post them here?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从您告诉我们的内容来看,没有明显的理由说明为什么 jindent 应该行为不当。
标准的首先要尝试/检查的事情:
对于类似的问题(以及相关的修复)
作为错误报告发送给提供商。
.PMCD。
No obvious reason from what you have told us as to why jindent should be misbehaving.
Standard first things to try/check:
for a similar problem (and assocaited fix)
to the provider as a bug report.
.PMCD.