summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/bodynotinblock.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'compilerplugins/clang/bodynotinblock.hxx')
-rw-r--r--compilerplugins/clang/bodynotinblock.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/bodynotinblock.hxx b/compilerplugins/clang/bodynotinblock.hxx
index a2c47e6683cd..0d3425213a30 100644
--- a/compilerplugins/clang/bodynotinblock.hxx
+++ b/compilerplugins/clang/bodynotinblock.hxx
@@ -25,7 +25,7 @@ class BodyNotInBlock
void run();
bool VisitFunctionDecl( FunctionDecl* declaration );
private:
- typedef std::vector< const Stmt* > StmtParents;
+ typedef vector< const Stmt* > StmtParents;
void traverseStatement( const Stmt* stmt, StmtParents& parents );
void checkBody( const Stmt* body, const StmtParents& parents, int stmtType, bool dontGoUp = false );
};