You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try to install qt5-webengine, I receive this error:
../../../../src/5.15.15-8f39ffe797.clean/src/3rdparty/chromium/gpu/command_buffer/service/program_manager.cc:623:25: error: ‘using StringPiece = class absl::string_view’ {aka ‘class absl::string_view’} has no member named ‘as_string’
623 | return output + input.as_string();
I encountered this issue after I updated the baseline in my vcpkg.json manifest file. The version of all qt5-* packages is overridden to 5.15.15 in my manifest file.
Do you have any idea what might cause this ?
Thanks.
Additional context
No response
The text was updated successfully, but these errors were encountered:
It goes past the initial error, but I encounter another similar error a bit later:
../../../../src/5.15.15-f13af3fa76.clean/src/3rdparty/chromium/extensions/browser/api/web_request/form_data_parser.cc: In member function ‘virtual bool extensions::FormDataParserUrlEncoded::SetSource(base::StringPiece)’:
../../../../src/5.15.15-f13af3fa76.clean/src/3rdparty/chromium/extensions/browser/api/web_request/form_data_parser.cc:424:11: error: ‘using StringPiece = class absl::string_view’ {aka ‘class absl::string_view’} has no member named ‘set’
424 | source_.set(source.data(), source.size());
| ^~~
../../../../src/5.15.15-f13af3fa76.clean/src/3rdparty/chromium/extensions/browser/api/web_request/form_data_parser.cc: In member function ‘virtual bool extensions::FormDataParserMultipart::SetSource(base::StringPiece)’:
../../../../src/5.15.15-f13af3fa76.clean/src/3rdparty/chromium/extensions/browser/api/web_request/form_data_parser.cc:568:11: error: ‘using StringPiece = class absl::string_view’ {aka ‘class absl::string_view’} has no member named ‘set’
568 | source_.set(source.data(), source.size());
| ^~~
Later Edit: These lines were changed in the version 5.15.16 to source_ = re2::StringPiece(source.data(), source.size());.
I will try a build with version 5.15.16. The issue with as_string is still present in 5.15.16.
Operating system
Linux
Compiler
GCC
Steps to reproduce the behavior
Failure logs
When I try to install qt5-webengine, I receive this error:
I encountered this issue after I updated the baseline in my
vcpkg.json
manifest file. The version of allqt5-*
packages is overridden to 5.15.15 in my manifest file.Do you have any idea what might cause this ?
Thanks.
Additional context
No response
The text was updated successfully, but these errors were encountered: