diff options
Diffstat (limited to 'libcxx/utils/google-benchmark/cmake')
-rw-r--r-- | libcxx/utils/google-benchmark/cmake/gnu_posix_regex.cpp | 1 | ||||
-rw-r--r-- | libcxx/utils/google-benchmark/cmake/posix_regex.cpp | 1 | ||||
-rw-r--r-- | libcxx/utils/google-benchmark/cmake/std_regex.cpp | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/libcxx/utils/google-benchmark/cmake/gnu_posix_regex.cpp b/libcxx/utils/google-benchmark/cmake/gnu_posix_regex.cpp index b5b91cdab7c..105189f02ee 100644 --- a/libcxx/utils/google-benchmark/cmake/gnu_posix_regex.cpp +++ b/libcxx/utils/google-benchmark/cmake/gnu_posix_regex.cpp @@ -9,4 +9,3 @@ int main() { } return regexec(&re, str.c_str(), 0, nullptr, 0) ? -1 : 0; } - diff --git a/libcxx/utils/google-benchmark/cmake/posix_regex.cpp b/libcxx/utils/google-benchmark/cmake/posix_regex.cpp index 466dc62560a..02f6dfc278a 100644 --- a/libcxx/utils/google-benchmark/cmake/posix_regex.cpp +++ b/libcxx/utils/google-benchmark/cmake/posix_regex.cpp @@ -11,4 +11,3 @@ int main() { regfree(&re); return ret; } - diff --git a/libcxx/utils/google-benchmark/cmake/std_regex.cpp b/libcxx/utils/google-benchmark/cmake/std_regex.cpp index 696f2a26bce..8177c482e83 100644 --- a/libcxx/utils/google-benchmark/cmake/std_regex.cpp +++ b/libcxx/utils/google-benchmark/cmake/std_regex.cpp @@ -7,4 +7,3 @@ int main() { std::regex_constants::extended | std::regex_constants::nosubs); return std::regex_search(str, re) ? 0 : -1; } - |