From 727f8ad2f60d2d5d8248207d7db0e163ef0ed2a1 Mon Sep 17 00:00:00 2001 From: Nicolas Pope <nwpope@utu.fi> Date: Thu, 27 Feb 2020 13:59:40 +0200 Subject: [PATCH] Fix windows compile error --- components/common/cpp/src/exception.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/common/cpp/src/exception.cpp b/components/common/cpp/src/exception.cpp index 0284f6b73..1291adcc5 100644 --- a/components/common/cpp/src/exception.cpp +++ b/components/common/cpp/src/exception.cpp @@ -27,6 +27,6 @@ exception::exception(const char *msg) : msg_(msg) { #endif } -exception::exception(const Formatter &msg) : msg_(msg.str()) { +exception::exception(const ftl::Formatter &msg) : msg_(msg.str()) { } \ No newline at end of file -- GitLab