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
partons
core
elementary-utils
Commits
8ff4a126
Commit
8ff4a126
authored
Jul 27, 2020
by
Valerio Bertone
Browse files
Adjustment
parent
ebf18210
Changes
2
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
8ff4a126
...
...
@@ -89,4 +89,4 @@ install(TARGETS ElementaryUtils
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib/static
)
install
(
DIRECTORY include DESTINATION include
)
install
(
DIRECTORY include
/
DESTINATION include
)
src/ElementaryUtils/parameters/GenericType.cpp
View file @
8ff4a126
...
...
@@ -99,7 +99,7 @@ std::vector<double> GenericType::toVectorDouble() const {
while
(
sstream
>>
d
||
!
sstream
.
eof
())
{
if
(
sstream
.
fail
())
{
throw
std
::
runtime_error
(
"[GenericType::to
UInt
] cast from std::string to unsigned short failed ! "
);
throw
std
::
runtime_error
(
"[GenericType::to
VectorDouble
] cast from std::string to unsigned short failed ! "
);
}
vd
.
push_back
(
d
);
}
...
...
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