Bladeren bron

Fixed return result problem
Author: jgg
Date: 1999-05-27 05:54:41 GMT
Fixed return result problem

Arch Librarian 22 jaren geleden
bovenliggende
commit
e3c4391992
1 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen
  1. 2 2
      apt-pkg/contrib/strutl.h

+ 2 - 2
apt-pkg/contrib/strutl.h

@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // -*- mode: cpp; mode: fold -*-
 // Description								/*{{{*/
 // 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
    String Util - These are some usefull string functions
@@ -63,7 +63,7 @@ class URI
    unsigned int Port;
    unsigned int Port;
    
    
    operator string();
    operator string();
-   inline operator =(string From) {CopyFrom(From);};
+   inline void operator =(string From) {CopyFrom(From);};
    inline bool empty() {return Access.empty();};
    inline bool empty() {return Access.empty();};
    
    
    URI(string Path) {CopyFrom(Path);};
    URI(string Path) {CopyFrom(Path);};