summaryrefslogtreecommitdiffstats
path: root/src/user.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/user.h')
-rw-r--r--src/user.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/user.h b/src/user.h
index f78652d..2e9c2ca 100644
--- a/src/user.h
+++ b/src/user.h
@@ -30,7 +30,7 @@
#include "audio/audio_codecs.h"
#include "sockets/url.h"
#include "threads/mutex.h"
-#include "boost/regex.hpp"
+#include <regex>
// Forward declaration
class t_request;
@@ -91,10 +91,10 @@ enum t_g726_packing {
};
struct t_number_conversion {
- boost::regex re;
- string fmt;
+ string re;
+ string fmt;
- string str(void) const { return re.str() + " --> " + fmt; }
+ string str(void) const { return re + " --> " + fmt; }
};