From 663a5d01b1931b97370ed8feff3ae229a9cc7ea4 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 2 Jan 2021 14:02:44 +0100 Subject: Format all code with clang-format --- src/ILog.hpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/ILog.hpp') diff --git a/src/ILog.hpp b/src/ILog.hpp index 33b2644..d71059a 100644 --- a/src/ILog.hpp +++ b/src/ILog.hpp @@ -25,19 +25,19 @@ namespace patchage { class ILog { public: - ILog() = default; + ILog() = default; - ILog(const ILog&) = default; - ILog& operator=(const ILog&) = default; + ILog(const ILog&) = default; + ILog& operator=(const ILog&) = default; - ILog(ILog&&) = default; - ILog& operator=(ILog&&) = default; + ILog(ILog&&) = default; + ILog& operator=(ILog&&) = default; - virtual ~ILog() = default; + virtual ~ILog() = default; - virtual void info(const std::string& msg) = 0; - virtual void warning(const std::string& msg) = 0; - virtual void error(const std::string& msg) = 0; + virtual void info(const std::string& msg) = 0; + virtual void warning(const std::string& msg) = 0; + virtual void error(const std::string& msg) = 0; }; } // namespace patchage -- cgit v1.2.1