unable to find numeric literal operator ‘operator""n’
时间: 2024-05-29 17:12:30 浏览: 157
Visual Studio创建Qt项目时“Unable to find a Qt build”错误的解决方法1
This error message typically occurs when you are trying to use the C++11 user-defined literal operator "operator""n" in your code, but your compiler does not support it.
To resolve this error, you can try updating your compiler to a version that supports C++11 features, or you can avoid using the "operator""n" literal suffix in your code. Alternatively, you can define your own user-defined literal operator that provides the same functionality as "operator""n".
阅读全文