diff options
author | Barnabás Pőcze <pobrn@protonmail.com> | 2025-01-21 18:30:11 +0100 |
---|---|---|
committer | Barnabás Pőcze <pobrn@protonmail.com> | 2025-02-27 11:30:23 +0100 |
commit | 5d0af9840bc268168712862acda2a4674eb3be5d (patch) | |
tree | 5aa294d49cd16c604c1555175e96ba631e582a68 /include | |
parent | 8fa119e0b50f2b3bf1ce142c5dc642242e56dcd5 (diff) |
libcamera: base: log: Remove `LogMessage::init()`
It is a short function that can be merged into the constructor with
essentially no change in observable behaviour, so do that.
Signed-off-by: Barnabás Pőcze <pobrn@protonmail.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/libcamera/base/log.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/libcamera/base/log.h b/include/libcamera/base/log.h index b3050eed..6d2c9301 100644 --- a/include/libcamera/base/log.h +++ b/include/libcamera/base/log.h @@ -75,8 +75,6 @@ public: private: LIBCAMERA_DISABLE_COPY_AND_MOVE(LogMessage) - void init(const char *fileName, unsigned int line); - std::ostringstream msgStream_; const LogCategory &category_; LogSeverity severity_; |