forked from lix-project/lix
018e2571aa
The property test in fact found a bug: we were excluding numbers!
8 lines
112 B
C++
8 lines
112 B
C++
#pragma once
|
|
|
|
namespace nix {
|
|
|
|
static constexpr std::string_view nameRegexStr = R"([0-9a-zA-Z\+\-\._\?=]+)";
|
|
|
|
}
|