summaryrefslogtreecommitdiff
path: root/apt-pkg/depcache.cc
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2009-06-29 18:23:07 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2009-06-29 18:23:07 +0200
commitfa3b09450ed3da175f619ca77d9dceb9a6f81972 (patch)
tree606631d6259b0a74d9f0cd12cd6c59dc4cc88cfe /apt-pkg/depcache.cc
parent2d403b92011c6e4a317a48284e7c68952ce5ddcd (diff)
merge r1797 from lp:~donkult/apt/experimental
Diffstat (limited to 'apt-pkg/depcache.cc')
-rw-r--r--apt-pkg/depcache.cc9
1 files changed, 1 insertions, 8 deletions
diff --git a/apt-pkg/depcache.cc b/apt-pkg/depcache.cc
index fcc6f4a4e..9f734cca2 100644
--- a/apt-pkg/depcache.cc
+++ b/apt-pkg/depcache.cc
@@ -15,6 +15,7 @@
#include <apt-pkg/algorithms.h>
#include <apt-pkg/fileutl.h>
+#include <apt-pkg/strutl.h>
#include <apt-pkg/configuration.h>
#include <apt-pkg/pkgsystem.h>
#include <apt-pkg/tagfile.h>
@@ -47,14 +48,6 @@ ConfigValueInSubTree(const char* SubTree, const char *needle)
return false;
}
-std::string OutputInDepth(const unsigned long Depth)
-{
- std::string output = "";
- for(unsigned long d=Depth; d > 0; d--)
- output += " ";
- return output;
-}
-
pkgDepCache::ActionGroup::ActionGroup(pkgDepCache &cache) :
cache(cache), released(false)
{