I'm using boost library for regular expression, I used boost::regex() function to compile the regular expression. I have to catch the exception thrown by this function call. So I used boost:regex_error
in catch().
But the use of this function gives following error:
undefined symbol: _ZTIN5boost11regex_errorE
What is the reason of above error?