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:
Khem Raj 2021-06-29 19:31:34 -07:00
parent b29a43b4d7
commit d39b11ba5d
2 changed files with 2 additions and 0 deletions

View File

@ -30,6 +30,7 @@
#include <exception>
#include <string_view>
#include <utility>
class Domain;

View File

@ -25,6 +25,7 @@
#include <expat.h>
#include <stdexcept>
#include <utility>
class InputStream;