diff options
Diffstat (limited to 'src/wasm-validator.h')
-rw-r--r-- | src/wasm-validator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm-validator.h b/src/wasm-validator.h index ffd70ba89..ccef84733 100644 --- a/src/wasm-validator.h +++ b/src/wasm-validator.h @@ -54,7 +54,7 @@ struct WasmValidator { Globally = 1 << 1, Quiet = 1 << 2 }; - typedef uint32_t Flags; + using Flags = uint32_t; // Validate an entire module. bool validate(Module& module, Flags flags = Globally); |