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
99389d4a
Commit
99389d4a
authored
Jul 05, 2016
by
Guillaume Pasero
Browse files
ENH: explicit namespace
parent
58c67c5b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Modules/ThirdParty/OssimPlugins/src/ossim/ossimStringUtilities.cpp
View file @
99389d4a
...
...
@@ -37,7 +37,7 @@ int ossimplugins::s_printf(char *str, std::size_t size, const char *format, ...)
{
std
::
va_list
ap
;
va_start
(
ap
,
format
);
const
int
res
=
vs_printf
(
str
,
size
,
format
,
ap
);
const
int
res
=
ossimplugins
::
vs_printf
(
str
,
size
,
format
,
ap
);
va_end
(
ap
);
return
res
;
}
Modules/ThirdParty/OssimPlugins/test/ossimTimeUtilitiesTest.cpp
View file @
99389d4a
...
...
@@ -168,7 +168,7 @@ void check_time(char const* format, char const* sDate,
// We know this test will fail because of float rounding => just display
std
::
cout
.
precision
(
16
);
std
::
cout
<<
mjd
<<
" as a simple string ("
<<
to_simple_string
(
mjd
)
std
::
cout
<<
mjd
<<
" as a simple string ("
<<
time
::
to_simple_string
(
mjd
)
<<
") is expected to differ from "
<<
sDate
<<
"
\n
"
;
// BOOST_CHECK_EQUAL(to_simple_string(mjd), sDate);
}
...
...
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