gpt4 book ai didi

c++ - 无法使用启用的 BullseyeCoverage 和 Casablanca REST SDK 编译 Visual Studio 2013 C++ 项目

转载 作者:行者123 更新时间:2023-11-30 05:44:11 25 4
gpt4 key购买 nike

我有一个利用 Casablanca REST SDK 功能的 Visual Studio 2013 C++ 项目。项目编译正常。我启用了 BullseyeCoverage Compile C++ 8.9.50 Windows License XXXX,项目中出现错误:

1>          D:\3rdparty\casablanca-2.4.0-r2\release\include\cpprest\astreambuf.h(404): error C2440: '?' : cannot convert from 'Concurrency::task<void>' to 'bool'
1> No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called
1> D:\3rdparty\casablanca-2.4.0-r2\release\include\cpprest\astreambuf.h(391) : while compiling class template member function 'Concurrency::task<void> Concurrency::streams::details::streambuf_state_manager<char>::close(std::ios_base::openmode)'
1> d:\3rdparty\casablanca-2.4.0-r2\release\include\cpprest\containerstream.h(54) : see reference to class template instantiation 'Concurrency::streams::details::streambuf_state_manager<char>' being compiled
1> d:\3rdparty\casablanca-2.4.0-r2\release\include\cpprest\containerstream.h(535) : see reference to class template instantiation 'Concurrency::streams::details::basic_container_buffer<_CollectionType>' being compiled
1> with
1> [
1> _CollectionType=std::basic_string<char,std::char_traits<char>,std::allocator<char>>
1> ]
1> d:\3rdparty\casablanca-2.4.0-r2\release\include\cpprest\containerstream.h(533) : while compiling class template member function 'Concurrency::streams::container_buffer<_CollectionType>::container_buffer(_CollectionType,std::ios_base::openmode)'
1> with
1> [
1> _CollectionType=std::basic_string<char,std::char_traits<char>,std::allocator<char>>
1> ]
1> d:\3rdparty\casablanca-2.4.0-r2\release\include\cpprest\containerstream.h(616) : see reference to function template instantiation 'Concurrency::streams::container_buffer<_CollectionType>::container_buffer(_CollectionType,std::ios_base::openmode)' being compiled
1> with
1> [
1> _CollectionType=std::basic_string<char,std::char_traits<char>,std::allocator<char>>
1> ]
1> d:\3rdparty\casablanca-2.4.0-r2\release\include\cpprest\containerstream.h(616) : see reference to class template instantiation 'Concurrency::streams::container_buffer<_CollectionType>' being compiled
1> with
1> [
1> _CollectionType=std::basic_string<char,std::char_traits<char>,std::allocator<char>>
1> ]
1> d:\3rdparty\casablanca-2.4.0-r2\release\include\cpprest\http_msg.h(491) : see reference to function template instantiation 'Concurrency::streams::istream Concurrency::streams::bytestream::open_istream<std::string>(_CollectionType)' being compiled
1> with
1> [
1> _CollectionType=std::string
1> ]
1>CL : error : status 2 from c:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/bin/x86_amd64/CL.exe
========== Build: 0 succeeded, 1 failed, 1 up-to-date, 0 skipped ==========

当我禁用靶心覆盖时,一切都可以正常构建。有什么建议可以解决吗?

最佳答案

修改astreambuf.h中的427行

 //closeOp = closeOp && _close_write().then([this_ptr]{}); 
// passing down exceptions from closeOp
closeOp = operator&&(closeOp, _close_write().then([this_ptr]{}));

需要显式调用运算符 &&,因为逻辑被覆盖并且靶心不知道如何处理它。

关于c++ - 无法使用启用的 BullseyeCoverage 和 Casablanca REST SDK 编译 Visual Studio 2013 C++ 项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29903398/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com