From d3425d5c6197c93c62f03ab1e25d7fc6127d1eb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Thu, 17 Jul 2014 07:39:19 +0200 Subject: [PATCH] xml dump: fixed cppcheckdata loader so previous/next will work --- tools/cppcheckdata.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/cppcheckdata.py b/tools/cppcheckdata.py index 260722534..445e442b2 100644 --- a/tools/cppcheckdata.py +++ b/tools/cppcheckdata.py @@ -175,6 +175,7 @@ class CppcheckData: token.previous = prev if prev: prev.next = token + prev = token if element.tag == 'scopes': for scope in element: self.scopes.append(Scope(scope))