Lioncash 12279b22cc gl_resource_manager: Make use of noexcept on move assignment and move constructors
Several standard constructors generally check if objects can be moved in
a non-throwing manner (usually via std::move_if_noexcept) to preserve
its exception guarantees. This means that if these were used with
certain containers any reallocations internally would cause resource
churn, as copies would be necessary instead of moves.

This way, if they're every used in that manner, the right behavior is
always performed.
2020-04-18 21:12:03 -04:00
..
2020-03-28 16:28:07 +00:00
2020-02-13 17:39:15 +08:00
2020-02-13 17:34:16 +08:00
2018-06-29 14:18:07 +03:00
2020-02-13 17:39:15 +08:00
2020-02-13 17:39:15 +08:00
2019-09-15 22:35:21 -05:00