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
Main Repositories
otb
Commits
c83cfc90
Commit
c83cfc90
authored
Jul 05, 2016
by
Guillaume Pasero
Browse files
COMP: implicit prototype for std::pow
parent
7ec08f9a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Modules/ThirdParty/OssimPlugins/src/ossim/ossimTimeUtilities.cpp
View file @
c83cfc90
...
...
@@ -63,7 +63,7 @@ ossimDate ossimplugins::time::details::strptime(string_view const& format, strin
std
::
size_t
nsecs_nb_digits
=
d
.
size
();
ssecs
=
decode_uint
(
d
);
nsecs_nb_digits
-=
d
.
size
();
ssecs
/=
std
::
pow
(
10
,
nsecs_nb_digits
);
ssecs
/=
std
::
pow
(
(
double
)
10.0
,
(
int
)
nsecs_nb_digits
);
}
else
{
// std::cout << "No subfraction in source date" << std::endl;
}
...
...
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