From dea750e9470f1be61f8afd3eb0ee45a57ed4976a Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Wed, 24 Sep 2008 12:49:17 +0000 Subject: Minor tweak, the newer version of the compiler had a couple of extra really good warnings. Of course, it said that a class with a copy constructor that also has one or more base classes should explicitly initialize the base classes in the copy constructor so nothing too suprising happens to you. I agree with this. --- src/fstring.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/fstring.h b/src/fstring.h index 620b312..bc23e57 100644 --- a/src/fstring.h +++ b/src/fstring.h @@ -86,6 +86,7 @@ namespace Bu } FBasicString( const MyType &rSrc ) : + Archival(), nLength( 0 ), pFirst( NULL ), pLast( NULL ) -- cgit v1.2.3