17 Feb
2009
17 Feb
'09
9:26 a.m.
Recently I used boost::regex in my project(VS2005 IDE). It works well with linking the lib file. But I want to use the source code of boost::regex.I include the regex.hpp in the project and used BOOST_REGEX_NO_LIB macro; But I got such error infomation when linking the code.
You're only including the header, not the source code: add the libs/regex/src/*.cpp files to your project and you should be fine. HTH, John.