Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cdo
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
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
mpim-sw
cdo
Commits
17837da7
Commit
17837da7
authored
2 months ago
by
Oliver Heidmann
Committed by
Uwe Schulzweida
2 months ago
Browse files
Options
Downloads
Patches
Plain Diff
fixed typos
parent
a0782cf2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!326
convert_to_number not called string_to_number, fixed usage of .fail enabling...
,
!322
Fixing and cleaning up handling of operator argument sourrounding the use of scientific notations
Pipeline
#97012
passed
2 months ago
Stage: build
Stage: check
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/magics_template_parser.cc
+2
-2
2 additions, 2 deletions
src/magics_template_parser.cc
with
2 additions
and
2 deletions
src/magics_template_parser.cc
+
2
−
2
View file @
17837da7
...
...
@@ -203,10 +203,10 @@ _set_magics_parameter_value(const char *, const char *, const char *)
// MAGICS++ STRINGARRAY TYPE PARAMETERS
else
if
(
cdo_cmpstr
(
param_type
,
"stringarray"
))
{
if
(
DBG
)
fprintf
(
stderr
,
"Input strarr is %s Sep char is % Search char is %c
\n
"
,
param_value
,
sep_char
.
c_str
(),
search_char
);
if
(
DBG
)
fprintf
(
stderr
,
"Input strarr is %s Sep char is %
s
Search char is %c
\n
"
,
param_value
,
sep_char
.
c_str
(),
search_char
);
if
(
std
::
strstr
(
param_value
,
";"
))
sep_char
=
';'
;
if
(
DBG
)
fprintf
(
stderr
,
"Input strarr is %s Sep char is %s
\n
"
,
param_value
,
sep_char
.
c_str
();
if
(
DBG
)
fprintf
(
stderr
,
"Input strarr is %s Sep char is %s
\n
"
,
param_value
,
sep_char
.
c_str
()
)
;
const
auto
splitStrings
=
split_string
(
param_value
,
sep_char
);
if
(
DBG
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment