From 535b1ab32d979ba8654f854e52c705037b046c7b Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Fri, 25 Mar 2016 08:45:20 +0100 Subject: Replace std::regex with boost::regex This should allow us to support ubuntu 14.04 LTS and other distributions that do not ship a complete C++11 stdlib --- src/ClockTAI.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/ClockTAI.cpp') diff --git a/src/ClockTAI.cpp b/src/ClockTAI.cpp index 5334bbd..22d4d9d 100644 --- a/src/ClockTAI.cpp +++ b/src/ClockTAI.cpp @@ -43,7 +43,7 @@ #include #include #include -#include +#include /* Last line from bulletin, example: 2015 JUL 1 =JD 2457204.5 TAI-UTC= 36.0 S + (MJD - 41317.) X 0.0 S @@ -99,7 +99,7 @@ int ClockTAI::update_local_tai_clock(int offset) int ClockTAI::parse_tai_offset() { - std::regex regex_offset("TAI-UTC= *([0-9.]+)"); + boost::regex regex_offset("TAI-UTC= *([0-9.]+)"); int tai_utc_offset = 0; @@ -108,9 +108,9 @@ int ClockTAI::parse_tai_offset() for (std::string line; std::getline(m_bulletin, line); ) { linecount++; auto words_begin = - std::sregex_token_iterator( + boost::sregex_token_iterator( line.begin(), line.end(), regex_offset, 1); - auto words_end = std::sregex_token_iterator(); + auto words_end = boost::sregex_token_iterator(); for (auto w = words_begin; w != words_end; ++w) { std::string s(*w); -- cgit v1.2.3