Replacing boost::regex with std::regex since we are using gcc 4.6 in the company I ran into an issue with empty () method of that class - it basically didn't make it from boost::regex into std::regex class. I am not sure whether this is a gcc's issue or this method didn't make it into C++11 standard at all, but that piece of code was heavily depending on this feature. So the question is - is there a way in C++11 std::regex to check if expression was ever set or I should stick to boost::regex for the rest of my life?
|
|
||||
| show 3 more comments |
|
N1711 (2004-11-04) was the first TR1 draft to lack |
|||
|
|
empty()isn't completely sprinkled all over your project, you might be able to quite easily refactor the code using it to use a combination of the regexp and aboost::optional(or some variant of this feature) – Martin Ba Oct 18 '11 at 7:07