私はboost::algorithm::contains(std::vector<long>, long value)
多くのエラーを使用しています。
std::vector<long> instance;
long byteIndex;
// (Perhaps more code?...)
boost::algorithm::contains(instances, byteIndex);
このコンパイラ エラーがわかりませんC2039: 'type' : is not a member of 'boost::range_const_iterator<C>'
。
テンプレート クラスを読み、std::string を使用したデモを見ました。
std::string s = "Boris Schäling";
boost::algorithm::contains(s, "is");
私は、別のタイプを使用していることを除いて、ブーストの内容の使用に違いがあるとは考えていません。なぜboost::algorithm::contains(std::vector<long>, long)
コンパイルされないのですか?