Fix a lot of warnings and some errors
This commit is contained in:
@@ -17,6 +17,8 @@ namespace Nz
|
||||
{
|
||||
public:
|
||||
AbstractLogger() = default;
|
||||
AbstractLogger(const AbstractLogger&) = default;
|
||||
AbstractLogger(AbstractLogger&&) noexcept = default;
|
||||
virtual ~AbstractLogger();
|
||||
|
||||
virtual void EnableStdReplication(bool enable) = 0;
|
||||
@@ -25,6 +27,9 @@ namespace Nz
|
||||
|
||||
virtual void Write(const std::string_view& string) = 0;
|
||||
virtual void WriteError(ErrorType type, const std::string_view& error, unsigned int line = 0, const char* file = nullptr, const char* function = nullptr);
|
||||
|
||||
AbstractLogger& operator=(const AbstractLogger&) = default;
|
||||
AbstractLogger& operator=(AbstractLogger&&) noexcept = default;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user