소스 검색

Fixed initialization problem
Author: jgg
Date: 1999-04-03 00:34:33 GMT
Fixed initialization problem

Arch Librarian 22 년 전
부모
커밋
e72403e138
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      apt-pkg/contrib/configuration.h

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

@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // -*- mode: cpp; mode: fold -*-
 // Description								/*{{{*/
 // Description								/*{{{*/
-// $Id: configuration.h,v 1.10 1999/03/15 08:10:39 jgg Exp $
+// $Id: configuration.h,v 1.11 1999/04/03 00:34:33 jgg Exp $
 /* ######################################################################
 /* ######################################################################
 
 
    Configuration Class
    Configuration Class
@@ -46,7 +46,7 @@ class Configuration
       
       
       string FullTag() const;
       string FullTag() const;
       
       
-      Item() : Child(0), Next(0) {};
+      Item() : Parent(0), Child(0), Next(0) {};
    };
    };
    Item *Root;
    Item *Root;