boost::string_ref something; something = "temp"; // works ok something = std::string("temp"); //doesn't work corretly while it should not be a should only be: boost::string_ref something; something = "temp"; // works ok std::string tempStr("temp"); something = tempStr; // works ok