]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Removing shadowed variable to get rid of compilation warnings.
authoraszostak <aszostak@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 20 May 2008 10:17:23 +0000 (10:17 +0000)
committeraszostak <aszostak@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 20 May 2008 10:17:23 +0000 (10:17 +0000)
HLT/MUON/AliHLTMUONList.h

index 42066f864b0d1003098b6f3b4f5af17dadba2c41..d5e34bb4e9739938f20d7a3436e4789ec9bd2e2c 100644 (file)
@@ -296,7 +296,7 @@ public:
                // Remove any excess nodes from 'this' list.
                while (current != NULL)
                {
-                       Node* temp = current;
+                       temp = current;
                        current = current->fNext;
                        DeleteNode(temp);
                }