Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
KiT-RT
KiT-RT
Commits
78f5f8ed
Commit
78f5f8ed
authored
Nov 30, 2020
by
Steffen Schotthöfer
Browse files
fixed small addon in option structure
parent
8ae90316
Changes
1
Hide whitespace changes
Inline
Side-by-side
code/src/common/optionstructure.cpp
View file @
78f5f8ed
...
...
@@ -35,8 +35,10 @@ std::string OptionBase::BadValue( std::vector<std::string>& option_value, std::s
newString
.
append
(
option_name
);
newString
.
append
(
": improper option value for type "
);
newString
.
append
(
type_id
);
// newString.append( ". Value chosen: " );
// newString.append( option_value );
newString
.
append
(
". Value chosen: "
);
for
(
unsigned
i
=
0
;
i
<
option_value
.
size
();
i
++
)
{
newString
.
append
(
option_value
[
i
]
);
}
return
newString
;
}
...
...
jannick.wolters
@jm2154
mentioned in commit
76d2c936
·
Apr 30, 2021
mentioned in commit
76d2c936
mentioned in commit 76d2c936c4d255e705d2f71bb8a6f76d2a48eec1
Toggle commit list
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