C:\Users\22836\Documents\untitled5\mainwindow.cpp:43: warning: 'operator+' is deprecated: Use operator| instead
时间: 2023-08-26 14:16:56 浏览: 130
mainwindow.cpp
这个警告是关于在 C++ 代码中使用了 `operator+` 的问题。根据警告信息,它已被弃用,建议使用 `operator|` 替代。你可以检查 `mainwindow.cpp` 文件的第 43 行,看看是否有使用 `operator+` 的地方,然后将其替换为 `operator|`。这样可以避免这个警告。
阅读全文