use std::regex_token_iterator instead of boost::tokenizer

Issue #57 resolved
Jochem Snuverink created an issue

in BDSMySQLWrapper strings are split with boost::tokenizer. While this works fine, this creates a dependency on boost. With C++11 this dependency can be avoided by using std::regex_token_iterator instead (see e.g. http://www.cplusplus.com/reference/regex/regex_token_iterator/regex_token_iterator/ )

Comments (1)

  1. Log in to comment