summaryrefslogtreecommitdiffstats
path: root/src/core/reporter.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* core/reporter: Allow moves into SaveToFile()Lioncash2019-07-051-1/+1
| | | | | | Taking the json instance as a constant reference, makes all moves into the parameter non-functional, resulting in copies. Taking it by value allows moves to function.
* core/reporter: Add missing includes and forward declarationsLioncash2019-07-051-1/+5
| | | | Adds missing inclusions to prevent potential compilation issues.
* core/reporter: Remove unnecessary namespace qualifiersLioncash2019-07-051-1/+1
| | | | | The Reporter class is part of the Core namespace, so the System class doesn't need to be qualified.
* core/reporter: Remove pessimizing move in GetHLERequestContextData()Lioncash2019-07-051-1/+1
| | | | This can inhibit copy-elision, so we can remove this redundant move.
* core/reporter: Make bracing consistentLioncash2019-07-051-8/+18
| | | | | Makes all control statements braced, regardless of their size, making code more uniform.
* core/reporter: Return in error case in SaveToFile()Lioncash2019-07-051-1/+3
| | | | | If the path couldn't be created, then we shouldn't be attempting to save the file.
* Update reporter.cppThomas May2019-06-221-5/+5
|
* loader: Move NSO module tracking to AppLoaderZach Hilman2019-05-261-36/+38
| | | Also cleanup of general stuff
* core: Add Reporter class to take/save reportsZach Hilman2019-05-251-0/+351