Search:

Type: Posts; User: laserlight

Search: Search took 0.11 seconds.

  1. Replies
    15
    Views
    12,713

    On which line? EDIT: Oh, you did not #include...

    On which line?

    EDIT:
    Oh, you did not #include <string>
  2. Replies
    15
    Views
    12,713

    I recommend using back_inserter instead of...

    I recommend using back_inserter instead of anticipating the number of elements in the result, e.g.,

    vector<string> result;
    std::set_difference(vec1.begin(), vec1.end(),
    ...
Results 1 to 2 of 2