Commit d39b11ba authored by Khem Raj's avatar Khem Raj

include <utility> for std::forward

Fixes ../git/src/Log.hxx:121:42: error: no member named 'forward' in namespace 'std' LogFormat(LogLevel::ERROR, e, fmt, std::forward<Args>(args)...); Signed-off-by: 's avatarKhem Raj <raj.khem@gmail.com>
parent b29a43b4
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
#include <exception> #include <exception>
#include <string_view> #include <string_view>
#include <utility>
class Domain; class Domain;
......
...@@ -25,6 +25,7 @@ ...@@ -25,6 +25,7 @@
#include <expat.h> #include <expat.h>
#include <stdexcept> #include <stdexcept>
#include <utility>
class InputStream; class InputStream;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment