libcamera v0.7.0
Supporting cameras in Linux since 2019
Loading...
Searching...
No Matches
regex.h
1/* SPDX-License-Identifier: LGPL-2.1-or-later */
2/*
3 * Copyright (C) 2025, Ideas on Board Oy
4 *
5 * std::regex wrapper for gcc
6 */
7
8#pragma GCC diagnostic push
9#if defined __SANITIZE_ADDRESS__ && defined __OPTIMIZE__
10#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
11#endif
12#include <regex>
13#pragma GCC diagnostic pop