diff options
| author | Lioncash <mai.iam2048@gmail.com> | 2023-06-08 11:53:01 -0400 |
|---|---|---|
| committer | Lioncash <mai.iam2048@gmail.com> | 2023-06-08 11:55:57 -0400 |
| commit | cfd25f1d7cff062a3bd7f5649c2abcc2a44f2a8d (patch) | |
| tree | 8b92f0dea90ac47db5139a23d0c43aa35bb6dc73 /Source/Core/DolphinQt/Debugger/CodeDiffDialog.h | |
| parent | 496aea54c0a25812c56175dfcaaee48ad9fe117b (diff) | |
CodeDiffDialog: Construct Diff instance in CalculateSymbolsFromProfile() when necessary
We can move the construction of the Diff instance into the body of the
if statement, so that we only construct this if the condition is true.
While we're at it, we can move the symbol description string into the
instance, getting rid of a copy. The function itself can also be const
qualified.
Diffstat (limited to 'Source/Core/DolphinQt/Debugger/CodeDiffDialog.h')
| -rw-r--r-- | Source/Core/DolphinQt/Debugger/CodeDiffDialog.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/Debugger/CodeDiffDialog.h b/Source/Core/DolphinQt/Debugger/CodeDiffDialog.h index ac156dea91..3278359afe 100644 --- a/Source/Core/DolphinQt/Debugger/CodeDiffDialog.h +++ b/Source/Core/DolphinQt/Debugger/CodeDiffDialog.h @@ -38,7 +38,7 @@ private: void ClearBlockCache();
void OnClickItem();
void OnRecord(bool enabled);
- std::vector<Diff> CalculateSymbolsFromProfile();
+ std::vector<Diff> CalculateSymbolsFromProfile() const;
void OnInclude();
void OnExclude();
void RemoveMissingSymbolsFromIncludes(const std::vector<Diff>& symbol_diff);
|
