-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Forward port #603 to main #604
Conversation
Signed-off-by: Michael Carroll <[email protected]>
Signed-off-by: Michael Carroll <[email protected]>
Signed-off-by: Michael Carroll <[email protected]>
69eac51
to
0b960c5
Compare
Signed-off-by: Michael Carroll <[email protected]>
constexpr auto GZ_DEPRECATED(7) IGN_SIX_SIZE_T = &GZ_SIX_SIZE_T; | ||
constexpr auto GZ_DEPRECATED(7) IGN_SEVEN_SIZE_T = &GZ_SEVEN_SIZE_T; | ||
constexpr auto GZ_DEPRECATED(7) IGN_EIGHT_SIZE_T = &GZ_EIGHT_SIZE_T; | ||
constexpr auto GZ_DEPRECATED(7) IGN_NINE_SIZE_T = &GZ_NINE_SIZE_T; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
these should not be forward-ported
/// timeSys.ElapsedRunTime()).count() << " ms\n"; | ||
/// watch.Stop(); | ||
/// ``` | ||
class GZ_MATH_VISIBLE Stopwatch | ||
{ | ||
// Use a steady clock | ||
// This alias is now deprecated; please use std::chrono::steady_clock | ||
// directly instead. | ||
using clock | ||
[[deprecated("As of 8.0, use std::chrono::steady_clock directly.")]] | ||
= std::chrono::steady_clock; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this deprecated using statement should not be in the Stopwatch
class
{ | ||
namespace math | ||
// Use a steady clock | ||
using clock = std::chrono::steady_clock; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is old
this has conflicts; I've opened #611 as an alternative |
Replaced by #611 |
Forward port #603