diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-01-08 16:18:53 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-01-08 16:18:53 -0800 |
commit | d8048f8df3ca432543c34981756e1d59c8e3b9c5 (patch) | |
tree | 0a8e7b8acb318c7240ae596a143b9f55d5c77eea | |
parent | be066182974f44a6efce0cb6339d0b15982182b0 (diff) |
fix relooper compiler warnings
-rw-r--r-- | src/relooper/Relooper.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/relooper/Relooper.h b/src/relooper/Relooper.h index 04f2ffc3..dfabcabb 100644 --- a/src/relooper/Relooper.h +++ b/src/relooper/Relooper.h @@ -89,11 +89,11 @@ struct Block { // setjmp returns, etc.) // -class SimpleShape; -class LabeledShape; -class MultipleShape; -class LoopShape; -class EmulatedShape; +struct SimpleShape; +struct LabeledShape; +struct MultipleShape; +struct LoopShape; +struct EmulatedShape; struct Shape { int Id; // A unique identifier. Used to identify loops, labels are Lx where x is the Id. Defined when added to relooper |