make it compile on ubuntu 16.04

This commit is contained in:
moneroexamples 2017-12-20 08:40:09 +08:00
parent c26882897b
commit 4146a47809
2 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@
#include <limits> #include <limits>
#include <ctime> #include <ctime>
#include <future> #include <future>
#include <regex>
#define TMPL_DIR "./templates" #define TMPL_DIR "./templates"
#define TMPL_PARIALS_DIR TMPL_DIR "/partials" #define TMPL_PARIALS_DIR TMPL_DIR "/partials"

View File

@ -31,7 +31,7 @@
#include <iterator> #include <iterator>
#include <algorithm> #include <algorithm>
#include <type_traits> #include <type_traits>
#include <regex>
/** /**
* Some helper functions used in the example. * Some helper functions used in the example.
@ -333,7 +333,7 @@ void chunks(Iterator begin,
* regular expression * regular expression
*/ */
inline string inline string
remove_bad_chars(string const& in_str, std::regex const& rgx = std::regex {"[^a-zA-Z0-9]"}) remove_bad_chars(string const& in_str, std::regex const& rgx = std::regex ("[^a-zA-Z0-9]"))
{ {
return std::regex_replace(in_str, rgx, ""); return std::regex_replace(in_str, rgx, "");
} }