diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-04-29 14:57:09 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-04-29 14:57:09 -0700 |
commit | 623918767242c36b9197e83a9e3b4e35ee17f8db (patch) | |
tree | f010afcd898abe515292f3326bbba6c22ac77390 /src/ast_utils.h | |
parent | eb2ea67bf52eac93de977922763a0ee3787be240 (diff) | |
download | binaryen-623918767242c36b9197e83a9e3b4e35ee17f8db.tar.gz binaryen-623918767242c36b9197e83a9e3b4e35ee17f8db.tar.bz2 binaryen-623918767242c36b9197e83a9e3b4e35ee17f8db.zip |
warning on BreakSeeker
Diffstat (limited to 'src/ast_utils.h')
-rw-r--r-- | src/ast_utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ast_utils.h b/src/ast_utils.h index 5b569435e..8aacb62da 100644 --- a/src/ast_utils.h +++ b/src/ast_utils.h @@ -23,7 +23,7 @@ namespace wasm { struct BreakSeeker : public PostWalker<BreakSeeker, Visitor<BreakSeeker>> { - Name target; // look for this one + Name target; // look for this one XXX looking by name may fall prey to duplicate names size_t found; BreakSeeker(Name target) : target(target), found(false) {} |