diff options
author | Alon Zakai <alonzakai@gmail.com> | 2019-01-15 13:20:05 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-15 13:20:05 -0800 |
commit | d24427dcc8cd6e0dbcd8c302eb2e8a5d0d6fdead (patch) | |
tree | 37575895001e5dd9509c5c42fd539253516e21fd /src/shell-interface.h | |
parent | 45714b5fc6cf14c112bc4f188aca427464ab69d8 (diff) | |
download | binaryen-d24427dcc8cd6e0dbcd8c302eb2e8a5d0d6fdead.tar.gz binaryen-d24427dcc8cd6e0dbcd8c302eb2e8a5d0d6fdead.tar.bz2 binaryen-d24427dcc8cd6e0dbcd8c302eb2e8a5d0d6fdead.zip |
Code style improvements (#1868)
* Use modern T p = v; notation to initialize class fields
* Use modern X() = default; notation for empty class constructors
Diffstat (limited to 'src/shell-interface.h')
-rw-r--r-- | src/shell-interface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shell-interface.h b/src/shell-interface.h index 071cc614d..ad553441f 100644 --- a/src/shell-interface.h +++ b/src/shell-interface.h @@ -53,7 +53,7 @@ struct ShellExternalInterface : ModuleInstance::ExternalInterface { Memory& operator=(const Memory&) = delete; public: - Memory() {} + Memory() = default; void resize(size_t newSize) { // Ensure the smallest allocation is large enough that most allocators // will provide page-aligned storage. This hopefully allows the |