diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2014-07-14 16:38:34 -0700 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2014-07-14 16:38:34 -0700 |
commit | ba7d8c7731983d12658fe26a3395879948e31f12 (patch) | |
tree | 706ea7a1463bd5dc23c582734215ad22472e25ed /common | |
parent | bdc97d55d28dc07da944fdde065b9e00edd6d6c2 (diff) | |
download | qtlocation-mapboxgl-ba7d8c7731983d12658fe26a3395879948e31f12.tar.gz |
fix errors
Diffstat (limited to 'common')
-rw-r--r-- | common/stderr_log.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/common/stderr_log.hpp b/common/stderr_log.hpp index 43d1b41c2e..e2492d3af5 100644 --- a/common/stderr_log.hpp +++ b/common/stderr_log.hpp @@ -9,10 +9,10 @@ class StderrLogBackend : public LogBackend { public: inline ~StderrLogBackend() = default; - void record(EventSeverityClass severity, EventClass event, const std::string &msg); - void record(EventSeverityClass severity, EventClass event, const char* format, ...); - void record(EventSeverityClass severity, EventClass event, int64_t code); - void record(EventSeverityClass severity, EventClass event, int64_t code, const std::string &msg); + void record(EventSeverity severity, Event event, const std::string &msg); + void record(EventSeverity severity, Event event, const char* format, ...); + void record(EventSeverity severity, Event event, int64_t code); + void record(EventSeverity severity, Event event, int64_t code, const std::string &msg); }; |