This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.0 by this push: new c92c7020e99 [fix](regex) use boost::regex instead of std:: (#30461) c92c7020e99 is described below commit c92c7020e99e48a9e18898a8a006e2d10925d898 Author: Yongqiang YANG <98214048+dataroar...@users.noreply.github.com> AuthorDate: Sun Jan 28 10:31:57 2024 +0800 [fix](regex) use boost::regex instead of std:: (#30461) --- be/src/olap/delete_handler.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/be/src/olap/delete_handler.cpp b/be/src/olap/delete_handler.cpp index febd7f4e553..cdad39a119a 100644 --- a/be/src/olap/delete_handler.cpp +++ b/be/src/olap/delete_handler.cpp @@ -22,8 +22,8 @@ #include <thrift/protocol/TDebugProtocol.h> #include <algorithm> +#include <boost/regex.hpp> #include <limits> -#include <regex> #include <sstream> #include <string> #include <utility> @@ -42,10 +42,10 @@ using std::vector; using std::string; using std::stringstream; -using std::regex; -using std::regex_error; -using std::regex_match; -using std::smatch; +using boost::regex; +using boost::regex_error; +using boost::regex_match; +using boost::smatch; namespace doris { using namespace ErrorCode; --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org