Skip to content

Commit a865c72

Browse files
committed
add explanatory comment
1 parent 976b147 commit a865c72

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/analysis/lattices/bool.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121

2222
namespace wasm::analysis {
2323

24+
// A lattice with two elements: the top element is `true` and the bottom element
25+
// is `false`.
2426
struct Bool {
2527
using Element = bool;
2628
Element getBottom() const noexcept { return false; }

0 commit comments

Comments
 (0)