I have a approximate following class
class ClassA : public ClassB
{
void HandleMessages(const u8 *pP, const u16 nMsgBodyLen);
static std::map<std::pair<u32, u32>, CreateSessInfo> m_mSessionId2CCRNum2DefaultBearerId;
};
When trying to access the map from the HandleMessage, I am getting the linker error, saying the
undefined reference to m_mSessionId2CCRNum2DefaultBearerId;
Could some c++ experts help me