Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenWalnut
OpenWalnut Core
Commits
0d1bd45a
Commit
0d1bd45a
authored
Mar 19, 2021
by
daniel.bub
Browse files
[REFAC
#83
] remove cout's in WProtonData.cpp
parent
d89a6bfe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
3 deletions
+0
-3
src/modules/filterProtonData/WProtonData.cpp
src/modules/filterProtonData/WProtonData.cpp
+0
-3
No files found.
src/modules/filterProtonData/WProtonData.cpp
View file @
0d1bd45a
...
...
@@ -156,17 +156,14 @@ std::string WProtonData::determineColumnTypeByString( std::string cellValue )
if
(
std
::
regex_search
(
cellValue
,
regexInt
)
)
{
std
::
cout
<<
cellValue
<<
"
\t
INT"
<<
std
::
endl
;
return
WDataType
::
getInt
();
}
else
if
(
std
::
regex_search
(
cellValue
,
regexDouble
)
)
{
std
::
cout
<<
cellValue
<<
"
\t
DOUBLE"
<<
std
::
endl
;
return
WDataType
::
getDouble
();
}
else
{
std
::
cout
<<
cellValue
<<
"
\t
STRING"
<<
std
::
endl
;
return
WDataType
::
getString
();
}
}
...
...
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