私は次のようなものを書きました:
bsoncxx::document::value filter_document = document{}
<< "_id" << bsoncxx::oid { strJobID }
<< finalize;
auto retVal = collTasks.find_one(
filter_document, mongocxx::options::find {});
結果:
../src/CMongo.cpp:371:73:
error: cannot bind
‘bsoncxx::v_noabi::document::value’ lvalue to
‘bsoncxx::v_noabi::document::value&&’
auto retVal = collTasks.find_one(filter_document, MyFindOptions);
例のように見えます。引数の型は viwe_or_value です...