C:\Users\23501\Desktop\5\QT\StudentManagementSystem_fingerprint\widget.cpp:1534: error: 'assert' was not declared in this scope assert(pTextCodec != nullptr); ^
时间: 2023-12-12 07:34:04 浏览: 219
demo.rar_DEMO_fingerprint
这个错误是因为在你的代码中,'assert' 函数没有被声明。'assert' 函数通常是在 `<cassert>` 头文件中声明的,所以你需要确保在使用 'assert' 函数之前包含了这个头文件。
你可以尝试在你的代码文件的开头添加以下代码:
```cpp
#include <cassert>
```
这样就可以解决这个错误了。
阅读全文