summaryrefslogtreecommitdiff
path: root/src/ir/load-utils.h
diff options
context:
space:
mode:
authorMax Graey <maxgraey@gmail.com>2021-11-23 07:03:25 +0200
committerGitHub <noreply@github.com>2021-11-22 21:03:25 -0800
commit7f24fce21a92f2aed4a11745d27d5181798ba6cd (patch)
tree80655dc933e3c2ae3ae53b7960cd71a6a022c3da /src/ir/load-utils.h
parent37999167bb333dd0b12d744af8e633897e65cff8 (diff)
downloadbinaryen-7f24fce21a92f2aed4a11745d27d5181798ba6cd.tar.gz
binaryen-7f24fce21a92f2aed4a11745d27d5181798ba6cd.tar.bz2
binaryen-7f24fce21a92f2aed4a11745d27d5181798ba6cd.zip
Modernize code to C++17 (#3104)
Diffstat (limited to 'src/ir/load-utils.h')
-rw-r--r--src/ir/load-utils.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/ir/load-utils.h b/src/ir/load-utils.h
index 62c31ef4e..011bdcbdf 100644
--- a/src/ir/load-utils.h
+++ b/src/ir/load-utils.h
@@ -19,9 +19,7 @@
#include "wasm.h"
-namespace wasm {
-
-namespace LoadUtils {
+namespace wasm::LoadUtils {
// checks if the sign of a load matters, which is when an integer
// load is of fewer bytes than the size of the type (so we must
@@ -37,8 +35,6 @@ inline bool isSignRelevant(Load* load) {
// check if a load can be signed (which some opts want to do)
inline bool canBeSigned(Load* load) { return !load->isAtomic; }
-} // namespace LoadUtils
-
-} // namespace wasm
+} // namespace wasm::LoadUtils
#endif // wasm_ir_load_h