Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Ondrej Vysocky
meric
Commits
b64fb8b8
Commit
b64fb8b8
authored
Dec 06, 2018
by
Ondrej Vysocky
Browse files
FIX int instead of float in filenames
#52
parent
5553fb69
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/meric/meric.cpp
View file @
b64fb8b8
...
...
@@ -57,7 +57,7 @@ int Meric::getDefaultParameters()
else
if
(
defaultParameter
.
frequency
!=
0
)
{
Meric
::
outputFilenameInfo
+=
"CF_"
;
Meric
::
OUTPUT_FILENAME
+=
std
::
to_string
(
defaultParameter
.
frequency
)
+
"_"
;
Meric
::
OUTPUT_FILENAME
+=
std
::
to_string
(
(
int
)
defaultParameter
.
frequency
)
+
"_"
;
}
#endif
...
...
Write
Preview
Supports
Markdown
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