../dlib-19.22/dlib/all/../bigint/../vectorstream/vectorstream.h:31:34: error: invalid use of dependent type ‘dlib::vectorstream::vector_streambuf<CharType>::size_type’ size_type read_pos = 0; // buffer[read_pos] == next byte to read from buffer
时间: 2024-01-29 08:02:20 浏览: 92
python3.11 dlib轮子文件//dlib-19.24.1-cp311-cp311-win-amd64.whl
这 error 是由于使用了一个依赖类型 `size_type`,但是编译器无法识别它。解决方法是在使用 `size_type` 之前加上 `typename` 前缀,以告诉编译器 `size_type` 是一个类型而非一个成员变量或函数。所以你需要将代码中的 `size_type` 改为 `typename vector_streambuf<CharType>::size_type`。这样编译器就能正确地解释 `size_type` 了。
阅读全文