summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Debug/Watches.cpp
AgeCommit message (Collapse)Author
2024-12-15Modernize `std::any_of` with rangesmitaclaw
In WiimoteReal.cpp, JitRegCache.cpp, lambda predicates were replaced by pointers to member functions because ranges algorithms are able invoke those. In ConvertDialog.cpp, the `std::mem_fn` helper was removed because ranges algorithms are able to handle pointers to member functions as predicates.
2023-12-12Watches: Make use of std::erase_ifLioncash
2023-06-18Replace std::ostringstream usage with fmt::formatget
2022-12-23Core: add locked state to watchesiwubcode
2021-07-05treewide: convert GPLv2+ license info to SPDX tagsPierre Bourdon
SPDX standardizes how source code conveys its copyright and licensing information. See https://spdx.github.io/spdx-spec/1-rationale/ . SPDX tags are adopted in many large projects, including things like the Linux kernel.
2021-03-04Watches: Fix Save and Load from stringsSepalani
2019-12-29Use std::istringstream or std::ostringstream instead of std::stringstream ↵David Korth
where possible. This removes std::iostream from the inheritance chain, which reduces overhead slightly.
2019-07-08Common/Watches: std::move strings where applicableLioncash
Allows calling code to move the std::string into the Watch instances, avoiding copies.
2018-04-28DebugInterface: Watches methods addedSepalani
Move Watches to Common