Skip to content
Snippets Groups Projects

Fix compilation errors on Windows

Merged Joscha Schmiedt requested to merge f-34-building-shared-libraries-on-windows-fails into dev
Files
9
+ 4
0
@@ -29,6 +29,7 @@
#include <memory> // for shared_ptr
#include <string> // for string
#include <vector> // for vector
#include <filesystem> // for path
namespace caosdb::logging {
@@ -46,6 +47,9 @@ public:
auto operator<<(const char *msg) -> LoggerOutputStream &;
auto operator<<(const std::string &msg) -> LoggerOutputStream &;
auto operator<<(void *msg) -> LoggerOutputStream &;
auto operator<<(std::filesystem::path *path) -> LoggerOutputStream &;
auto operator<<(const std::filesystem::path &path) -> LoggerOutputStream &;
static auto get(const std::string &channel, int level) -> LoggerOutputStream {
return LoggerOutputStream(channel, level);
}
Loading