()
| 1875 | } |
| 1876 | |
| 1877 | fn regex_has_include() -> &'static Regex { |
| 1878 | static VALUE: OnceLock<Regex> = OnceLock::new(); |
| 1879 | VALUE.get_or_init(|| Regex::new(r"\b__has_include\s*\(").unwrap()) |
| 1880 | } |
| 1881 | |
| 1882 | fn regex_static_assert() -> &'static Regex { |
| 1883 | static VALUE: OnceLock<Regex> = OnceLock::new(); |