summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/libcamera/base/log.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/libcamera/base/log.h b/include/libcamera/base/log.h
index 62093012..b3050eed 100644
--- a/include/libcamera/base/log.h
+++ b/include/libcamera/base/log.h
@@ -61,8 +61,6 @@ public:
LogMessage(const char *fileName, unsigned int line,
const LogCategory &category, LogSeverity severity,
const std::string &prefix = std::string());
-
- LogMessage(LogMessage &&);
~LogMessage();
std::ostream &stream() { return msgStream_; }
@@ -75,7 +73,7 @@ public:
const std::string msg() const { return msgStream_.str(); }
private:
- LIBCAMERA_DISABLE_COPY(LogMessage)
+ LIBCAMERA_DISABLE_COPY_AND_MOVE(LogMessage)
void init(const char *fileName, unsigned int line);