I'm running into a problem with initializing some const objects in my namespace. I have a namespace like the following:
namespace myNamespace{
const std::string HI = "Hi";
const std::string BYE = "Bye";
inline std::vector<std::string> createHiAndByeVector(){
std::vector<std::string> temp;
temp.push_back(HI);
temp.push_back(BYE);
return temp;
}
const std::vector<std::string> HI_AND_BYE = createHiAndByeVector();
}
If I debug the initialization, I can see that both HI and BYE get assigned the string literals. The execution continues on to initialziae HI_AND_BYE, but when we get into the createHiAndByeVector() function, both HI and BYE have no values anymore. I then get a segmentation fault in the push_back() method. If I look at the call stack, I see the line: __static_initialization_and_destruction_0(). What is going on? Are my objects getting destroyed immediately after they're constructed?
std::vector<std::string> const HI_AND_BYE { "Hi", "Bye" };. – Kerrek SB Feb 17 at 1:36HI_AND_BYE? kind of static initialize order issue – billz Feb 17 at 1:57vectorcreated no matter how many translation units this header file is included in? – Wagan8r Mar 15 at 1:39