diff options
| author | 2021-04-20 12:57:45 -0400 | |
|---|---|---|
| committer | 2021-04-20 12:57:49 -0400 | |
| commit | 6125590a7b2bbad7d5efdfbab69ba86601e0769b (patch) | |
| tree | c420bcf8709cf5af735988fddf25bba63ddbd2eb /src/common/logging/backend.h | |
| parent | log/backend: Make use of erase_if (diff) | |
| download | yuzu-6125590a7b2bbad7d5efdfbab69ba86601e0769b.tar.gz yuzu-6125590a7b2bbad7d5efdfbab69ba86601e0769b.tar.xz yuzu-6125590a7b2bbad7d5efdfbab69ba86601e0769b.zip | |
log/backend: Use in-class initializer for FileBackend
We can also avoid redundant constructions of the same string repeatedly.
Diffstat (limited to 'src/common/logging/backend.h')
| -rw-r--r-- | src/common/logging/backend.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/logging/backend.h b/src/common/logging/backend.h index 84a544ea4..9dd2589c3 100644 --- a/src/common/logging/backend.h +++ b/src/common/logging/backend.h | |||
| @@ -94,8 +94,8 @@ public: | |||
| 94 | void Write(const Entry& entry) override; | 94 | void Write(const Entry& entry) override; |
| 95 | 95 | ||
| 96 | private: | 96 | private: |
| 97 | Common::FS::IOFile file; | 97 | FS::IOFile file; |
| 98 | std::size_t bytes_written; | 98 | std::size_t bytes_written = 0; |
| 99 | }; | 99 | }; |
| 100 | 100 | ||
| 101 | /** | 101 | /** |