I have the following code which compiles with no warnings (-Wall -pedantic) with g++
#include
#include
using namespace std;
cla
Whats happening is that the reference 'str' is being initialized so that it points to the temporary arg, 's'. Its pretty much the same as using a pointer - you're counting on the continued existence of your constructor arg, 's'. When the temporary is deleted (after the constructor ftn returns), then your reference now points at garbage.
To fix, change str so that its an actual string object and not a reference.
const std::string str;
That way a copy will be made of your arg string, and said copy will have the same lifespan as your Foo object.