Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
libcifpp
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
libcifpp
Commits
8d3a0797
Unverified
Commit
8d3a0797
authored
Aug 15, 2022
by
Maarten L. Hekkelman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix regex for item_validator
parent
718c1385
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
+1
-1
src/cif/validate.cpp
+1
-1
No files found.
src/cif/validate.cpp
View file @
8d3a0797
...
...
@@ -90,7 +90,7 @@ DDL_PrimitiveType map_to_primitive_type(std::string_view s)
type_validator
::
type_validator
(
std
::
string_view
name
,
DDL_PrimitiveType
type
,
std
::
string_view
rx
)
:
m_name
(
name
)
,
m_primitive_type
(
type
)
,
m_rx
(
new
regex_impl
(
rx
)
)
,
m_rx
(
new
regex_impl
(
rx
.
empty
()
?
".+"
:
rx
))
/// Empty regular expressions are not allowed, in libcpp's std::regex (POSIX?
)
{
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment