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.
编译我的应用程序时,有一个编译器警告:
[DCC 警告] ... W1002 符号“IncludeTrailingBackslash”特定于平台
如何避免此警告?
Delphi XE2 有另一个功能IncludeTrailingPathDelimiter可以用来代替IncludeTrailingBackslash. Delphi 支持的任何平台都支持此功能。
IncludeTrailingPathDelimiter
IncludeTrailingBackslash
为避免警告,请在配置对话框中将其关闭。这也会关闭所有其他特定于平台的警告,这可能会有所帮助,因为我认为您无论如何都不会开发 Linux 应用程序。
要绕过警告,IncludeTrailingPathDelimiter请按照您的建议使用另一个函数 ( )。