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: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
parent
b29a43b4d7
commit
d39b11ba5d
|
@ -30,6 +30,7 @@
|
|||
|
||||
#include <exception>
|
||||
#include <string_view>
|
||||
#include <utility>
|
||||
|
||||
class Domain;
|
||||
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
#include <expat.h>
|
||||
|
||||
#include <stdexcept>
|
||||
#include <utility>
|
||||
|
||||
class InputStream;
|
||||
|
||||
|
|
Loading…
Reference in New Issue