We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent addae13 commit bcacc92Copy full SHA for bcacc92
1 file changed
src/rdf4cpp/bnode_mngt/reference_backends/generator/RandomIdGenerator.cpp
@@ -7,10 +7,11 @@ namespace rdf4cpp::bnode_mngt {
7
8
namespace generator_detail {
9
10
-static constexpr std::array<char, 36> bnode_id_valid_chars{'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k',
11
- 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v',
12
- 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6',
13
- '7', '8', '9'};
+static constexpr std::array bnode_id_valid_chars{'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k',
+ 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v',
+ 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G',
+ 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R',
14
+ 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'};
15
16
static constexpr size_t generated_id_size = 32;
17
0 commit comments