Skip to content

Commit 39411cc

Browse files
authored
Consistent spacing around the namespace keyword (#1829)
1 parent e037e7a commit 39411cc

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

src/ir/ExpressionAnalyzer.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
#include "ir/load-utils.h"
2020

2121
namespace wasm {
22+
2223
// Given a stack of expressions, checks if the topmost is used as a result.
2324
// For example, if the parent is a block and the node is before the last position,
2425
// it is not used.
@@ -616,4 +617,5 @@ HashType ExpressionAnalyzer::hash(Expression* curr) {
616617
}
617618
return digest;
618619
}
620+
619621
} // namespace wasm

src/support/safe_integer.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#include <cstdint>
2121

2222
namespace wasm {
23+
2324
bool isInteger(double x);
2425
bool isUInteger32(double x);
2526
bool isSInteger32(double x);
@@ -39,6 +40,7 @@ bool isInRangeI32TruncS(int64_t i);
3940
bool isInRangeI32TruncU(int64_t i);
4041
bool isInRangeI64TruncS(int64_t i);
4142
bool isInRangeI64TruncU(int64_t i);
43+
4244
} // namespace wasm
4345

4446
#endif // wasm_safe_integer_h

src/wasm-js.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ using namespace cashew;
3434
using namespace wasm;
3535

3636
namespace wasm {
37+
3738
int debug = 0;
39+
3840
}
3941

4042
// global singletons

0 commit comments

Comments
 (0)