diff options
-rw-r--r-- | src/s2wasm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/s2wasm.h b/src/s2wasm.h index 87c0c2881..a12c5cb53 100644 --- a/src/s2wasm.h +++ b/src/s2wasm.h @@ -120,7 +120,7 @@ class S2WasmBuilder { } template<typename T> Fatal &operator<<(T arg) { - std::cerr << std::forward<T>(arg); + std::cerr << arg; return *this; } ~Fatal() { |