cyanskies / another-toml-cpp

MIT License
1 stars 0 forks source link

std::regex #13

Open cyanskies opened 4 months ago

cyanskies commented 4 months ago

We're using std::regex to pattern match values in order to determine their toml type. std::regex is quite pessimistic in terms of performance.

boost::regex is supposed to have a very similar api, so swapping to that should be pretty easy.