diff options
Diffstat (limited to 'src/tracing.h')
-rw-r--r-- | src/tracing.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tracing.h b/src/tracing.h index dbba716c..86daf63c 100644 --- a/src/tracing.h +++ b/src/tracing.h @@ -41,7 +41,7 @@ struct TraceScope { WABT_DISALLOW_COPY_AND_ASSIGN(TraceScope); TraceScope() = delete; TraceScope(const char* method); - template<typename... Args> + template <typename... Args> TraceScope(const char* method, const char* format, Args&&... args) : method_(method) { PrintEnter(method); @@ -70,4 +70,4 @@ struct TraceScope { } // end namespace wabt -#endif // WABT_TRACING_H_ +#endif // WABT_TRACING_H_ |