summaryrefslogtreecommitdiff
path: root/apt-pkg/deb/debversion.cc
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 17:00:19 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 17:00:19 +0000
commitf3bf50a6441eb93751258bf7abdf21395a7befe1 (patch)
tree76d9f12851d68808802995c303f9002c769e9399 /apt-pkg/deb/debversion.cc
parent1bcf49b4ed229ec196cc9dd429ffb55f901f89cd (diff)
Remove unused variables
Author: jgg Date: 2003-01-27 00:05:59 GMT Remove unused variables
Diffstat (limited to 'apt-pkg/deb/debversion.cc')
-rw-r--r--apt-pkg/deb/debversion.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/apt-pkg/deb/debversion.cc b/apt-pkg/deb/debversion.cc
index a3bb908dd..d4be0f07e 100644
--- a/apt-pkg/deb/debversion.cc
+++ b/apt-pkg/deb/debversion.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: debversion.cc,v 1.5 2002/11/23 07:54:36 jgg Exp $
+// $Id: debversion.cc,v 1.6 2003/01/27 00:05:59 jgg Exp $
/* ######################################################################
Debian Version - Versioning system for Debian
@@ -63,9 +63,6 @@ int debVersioningSystem::CmpFragment(const char *A,const char *AEnd,
const char *rhs = B;
while (lhs != AEnd && rhs != BEnd)
{
- // Starting points
- const char *Slhs = lhs;
- const char *Srhs = rhs;
int first_diff = 0;
while ((lhs != AEnd && !isdigit(*lhs)) ||