From: dtyler@easynet.co.uk (Derek Tyler)
Subject: re string class and gdb
20 Oct 1998 09:34:07 -0700
Message-ID: <199810200029.RAA03578.cygnus.gnu-win32@cygnus.com>
Reply-To: <dtyler@easynet.co.uk>
Mime-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
To: "GNU Mailing list" <gnu-win32@cygnus.com>

Thanks.  So am I right now ? It works and gdb prints the values.


#include <string>
   using namespace std;

           
   int main()
           
   {
      string s ;
      s = "Hello";
      string t = " world";
      string v = s + t;
      cout << v << endl;
   				breakpoint
      return 0;
   }














----------
> From: Mumit Khan <khan@xraylith.wisc.edu>
> To: dtyler@easynet.co.uk
> Cc: GNU Mailing list <gnu-win32@cygnus.com>
> Subject: Re: String class and gdb 
> Date: 19 October 1998 04:45
> 
> "Derek Tyler" <dtyler@easynet.co.uk> writes:
> > I've just started trying to use the
> > String class. The following code works
> > OK, but when I put a breakpoint as
> > shown, and try to examine variables
> > with
> > gdb, I get 
> > 
> > (gdb) p s
> > $1 = <incomplete type> 
> >     
> 
> That's because libg++ was stripped of all symbols. You simply can't
"look"
> into String implementation any more. Sorry.
> 
> I do suggest that you dump String and use the standard "string" from now
> on. String is part of deprecated libg++, which you should avoid at all
> costs in new code.
> 
> Regards,
> Mumit
> 




D Tyler

dtyler@easynet.co.uk
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".
