diff options
author | Michael Bebenita <mbebenita@gmail.com> | 2016-01-14 16:44:42 -0800 |
---|---|---|
committer | Michael Bebenita <mbebenita@gmail.com> | 2016-01-14 16:44:42 -0800 |
commit | 4c0f7e27bfff16daf610463c326f3a11b36d7e6e (patch) | |
tree | 963250376326279551524d2e2f5c256d0f88a744 /test/example/find_div0s.cpp | |
parent | e165020f87f807179d27203195843c88fb8afe55 (diff) | |
download | binaryen-4c0f7e27bfff16daf610463c326f3a11b36d7e6e.tar.gz binaryen-4c0f7e27bfff16daf610463c326f3a11b36d7e6e.tar.bz2 binaryen-4c0f7e27bfff16daf610463c326f3a11b36d7e6e.zip |
Some cleanup.
Diffstat (limited to 'test/example/find_div0s.cpp')
-rw-r--r-- | test/example/find_div0s.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/example/find_div0s.cpp b/test/example/find_div0s.cpp index 3dffa30b5..cb29043a7 100644 --- a/test/example/find_div0s.cpp +++ b/test/example/find_div0s.cpp @@ -38,7 +38,7 @@ int main() { // Search it for divisions by zero: Walk the module, looking for // that operation. - struct DivZeroSeeker : public WasmWalker<DivZeroSeeker, void> { + struct DivZeroSeeker : public WasmWalker<DivZeroSeeker> { void visitBinary(Binary* curr) { // In every Binary, look for integer divisions if (curr->op == BinaryOp::DivS || curr->op == BinaryOp::DivU) { |