G
gwowen
// Is the following well defined
#include <vector>
#include <algorith>
int main()
{
std::vector<int> foo(0,0);
bool cont = (std::find(foo.begin(),foo.end(),1) == foo.end());
// Is cont TRUE at this point
}
#include <vector>
#include <algorith>
int main()
{
std::vector<int> foo(0,0);
bool cont = (std::find(foo.begin(),foo.end(),1) == foo.end());
// Is cont TRUE at this point
}