citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit ab5c4e4a547a5b2b4bcf3bb10b02e1635f58adb1
parent ea92092e9b4d72b4dee2c1a843c530cf20951747
Author: Kyle Milz <kyle@0x30.net>
Date:   Fri, 12 Aug 2016 00:17:53 -0600

src: include local header at beginning of file

Diffstat:
Msrc/inst_visitor.cc | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/inst_visitor.cc b/src/inst_visitor.cc @@ -13,12 +13,13 @@ // ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF // OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. // +#include "inst_visitor.h" + #include <clang/AST/AST.h> #include <clang/Lex/Lexer.h> #include <sstream> #include <string> -#include "inst_visitor.h" bool RewriteASTVisitor::TraverseStmt(clang::Stmt *s)