mirror of
https://github.com/NixOS/nix.git
synced 2025-11-26 12:10:59 +01:00
The property test in fact found a bug: we were excluding numbers!
(cherry picked from commit 018e2571aa)
7 lines
112 B
C++
7 lines
112 B
C++
#pragma once
|
|
|
|
namespace nix {
|
|
|
|
static constexpr std::string_view nameRegexStr = R"([0-9a-zA-Z\+\-\._\?=]+)";
|
|
|
|
}
|