提交 ff02af98 编写于 作者: A Alexey Milovidov

Addition to prev. revision [#CLICKHOUSE-2].

上级 7fc3d900
...@@ -4,7 +4,7 @@ macro(add_glob cur_list) ...@@ -4,7 +4,7 @@ macro(add_glob cur_list)
endmacro() endmacro()
macro(add_headers_and_sources prefix common_path) macro(add_headers_and_sources prefix common_path)
add_glob(${prefix}_headers RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} ${common_path}/*.h ${common_path}/*.inl) add_glob(${prefix}_headers RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} ${common_path}/*.h)
add_glob(${prefix}_sources ${common_path}/*.cpp ${common_path}/*.h) add_glob(${prefix}_sources ${common_path}/*.cpp ${common_path}/*.h)
endmacro() endmacro()
......
...@@ -26,6 +26,8 @@ ...@@ -26,6 +26,8 @@
* - if in most calls, the regular expression does not match; * - if in most calls, the regular expression does not match;
* - if the regular expression is compatible with the re2 engine; * - if the regular expression is compatible with the re2 engine;
* - you can use at your own risk, since, probably, not all cases are taken into account. * - you can use at your own risk, since, probably, not all cases are taken into account.
*
* NOTE: Multi-character metasymbols such as \Pl are handled incorrectly.
*/ */
namespace OptimizedRegularExpressionDetails namespace OptimizedRegularExpressionDetails
...@@ -105,4 +107,4 @@ private: ...@@ -105,4 +107,4 @@ private:
using OptimizedRegularExpression = OptimizedRegularExpressionImpl<true>; using OptimizedRegularExpression = OptimizedRegularExpressionImpl<true>;
#include "OptimizedRegularExpression.inl" #include "OptimizedRegularExpression.inl.h"
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册