現在、私はC++ 17の追加を検討中です。 playing around withstd::variantの後に同じ例でstd::optionalも使用したかったです。現在、コンパイルが次のエラーのため失敗したことを見て: error: no viable conversion from returned value of type
'(lambda at ./html_parser.
クラスメンバ関数に1つのパラメータをバインドする必要があります。このような 何か: #include <functional>
#include <iostream>
struct test
{
void func(int a, int b)
{
std::cout << a << " " << b << std::endl;
}
};
in