summaryrefslogtreecommitdiff
path: root/apt-pkg/contrib/strutl.h
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:53:52 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:53:52 +0000
commite3c4391992c1a2670b79c504ec7b3137aa719d57 (patch)
tree3e6c2ff6b26f07c13638fbf32d9bead6450c42e8 /apt-pkg/contrib/strutl.h
parent6d13bbcacffbd3b6473616ab3ffce7b9a35af34a (diff)
Fixed return result problem
Author: jgg Date: 1999-05-27 05:54:41 GMT Fixed return result problem
Diffstat (limited to 'apt-pkg/contrib/strutl.h')
-rw-r--r--apt-pkg/contrib/strutl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/contrib/strutl.h b/apt-pkg/contrib/strutl.h
index a79f28e4e..2f2629985 100644
--- a/apt-pkg/contrib/strutl.h
+++ b/apt-pkg/contrib/strutl.h
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: strutl.h,v 1.12 1999/02/01 08:11:57 jgg Exp $
+// $Id: strutl.h,v 1.13 1999/05/27 05:54:41 jgg Exp $
/* ######################################################################
String Util - These are some usefull string functions
@@ -63,7 +63,7 @@ class URI
unsigned int Port;
operator string();
- inline operator =(string From) {CopyFrom(From);};
+ inline void operator =(string From) {CopyFrom(From);};
inline bool empty() {return Access.empty();};
URI(string Path) {CopyFrom(Path);};