-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/59865/
-----------------------------------------------------------
(Updated June 7, 2017, 8 p.m.)
Review request for mesos, Jeff Coffler, John Kordich, Joseph Wu, and Li Li.
Changes
-------
Fixed to use `decltype`.
Bugs: MESOS-7459
https://issues.apache.org/jira/browse/MESOS-7459
Repository: mesos
Description (updated)
-------
While `ns()` and our other types are `int64_t`, the variables to which
we're assigning are (by definition of `struct timeval`) a `time_t` or a
`long` (depending on platform). We cast it because there is no
alternative, and we otherwise generate hundreds of warnings. We cast to
`decltype(...)` because the type is different depending on platform.
Diffs (updated)
-----
3rdparty/stout/include/stout/duration.hpp
138993e25c51efc82d447fe82037bf3a5fe7fd91
Diff: https://reviews.apache.org/r/59865/diff/2/
Changes: https://reviews.apache.org/r/59865/diff/1-2/
Testing
-------
Built `stout-tests` on Windows and Linux, no more `duration.hpp` warnings.
Thanks,
Andrew Schwartzmeyer