From 27522823a54e240b58fa4f104e84d40167f576c2 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 28 Apr 2020 02:05:17 +0200 Subject: Fix build. --- src/lib/log.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lib/log.h b/src/lib/log.h index 416f4259d..e0ecf8d71 100644 --- a/src/lib/log.h +++ b/src/lib/log.h @@ -53,7 +53,9 @@ public: /** @param amount Approximate number of bytes to return; the returned value * may be shorter or longer than this. */ - virtual std::string head_and_tail (int amount = 1024) const = 0; + virtual std::string head_and_tail (int amount = 1024) const { + return ""; + } protected: -- cgit v1.2.3