Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
advLigoRTS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CDS
software
advLigoRTS
Merge requests
!375
RCG: Widen IFO check in parser3 to allow any capital letter.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
RCG: Widen IFO check in parser3 to allow any capital letter.
erik.vonreis/advligorts:widen_ifo_check
into
master
Overview
2
Commits
1
Pipelines
0
Changes
1
Merged
Erik von Reis
requested to merge
erik.vonreis/advligorts:widen_ifo_check
into
master
2 years ago
Overview
2
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
54454f69
1 commit,
2 years ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/epics/util/lib/Parser3.pm
+
1
−
1
Options
@@ -643,7 +643,7 @@ sub node_processing {
return
1
;
# Do not call this function on leaves, we already did that
}
elsif
(
$block_type
eq
"
Reference
")
{
if
(
$source_block
=~
/cdsIPCx/
)
{
if
(
$block_name
!~
/[
CGHKLMSX
]\d\:/
)
{
if
(
$block_name
!~
/[
A-Z
]\d\:/
)
{
die
"
***ERROR: Signal name of IPCx module must include IFO:
$block_name
\n
";
}
}
Loading