clang tidy/format fixes for add_custom_layer_dialog

This commit is contained in:
AdenKoperczak 2025-03-25 10:35:01 -04:00
parent a7c6be2bab
commit f5ab6f3ef7
4 changed files with 5 additions and 4 deletions

View file

@ -137,7 +137,7 @@ std::string FindMapSymbologyLayer(const QStringList& styleLayers,
[&layer](const std::string& styleLayer) -> bool
{
// Perform case-insensitive matching
RE2 re {"(?i)" + styleLayer};
const RE2 re {"(?i)" + styleLayer};
if (re.ok())
{
return RE2::FullMatch(layer, re);