summaryrefslogtreecommitdiffstats
path: root/src/common/telemetry.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-07-18telemetry: Remove unnecessary Field constructorLioncash1-4/+1
We can just take the value parameter by value which allows both moving into it, and copies at the same time, depending on the calling code.
2018-07-18telemetry: Make operator== and operator!= const member functions of FieldLioncash1-2/+2
These operators don't modify internal class state, so they can be made const member functions. While we're at it, drop the unnecessary inline keywords. Member functions that are defined in the class declaration are already inline by default.
2018-07-18telemetry: Default copy/move constructors and assignment operatorsLioncash1-14/+4
This provides the equivalent behavior, but without as much boilerplate. While we're at it, explicitly default the move constructor, since we have a move-assignment operator defined.
2018-03-27telemetry.h: Reword comment from citra to yuzuN00byKing1-1/+1
2018-01-18telemetry: Silence initialization order warningsLioncash1-2/+2
2017-05-25common: Add a generic interface for logging telemetry fields.bunnei1-0/+196