From bb5bf5469d222568476243b781824911532581cc Mon Sep 17 00:00:00 2001
From: triton <ripzonetriton@gmail.com>
Date: Sun, 1 Sep 2013 17:26:30 +0100
Subject: [PATCH] Fixed VTable walking to actually walk through all the tables.

---
 src/Parser/Parser.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Parser/Parser.cpp b/src/Parser/Parser.cpp
index b1ed2725..5c1302d9 100644
--- a/src/Parser/Parser.cpp
+++ b/src/Parser/Parser.cpp
@@ -510,8 +510,8 @@ void Parser::WalkVTable(clang::CXXRecordDecl* RD, CppSharp::AST::Class^ C)
             Info.Layout = WalkVTableLayout(VTLayout);
 
             C->Layout->VFTables->Add(Info);
-            break;
         }
+        break;
     }
     case TargetCXXABI::GenericItanium:
     {