From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14348 invoked by alias); 21 Aug 2004 17:30:14 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 14338 invoked from network); 21 Aug 2004 17:30:13 -0000 Received: from unknown (HELO out004.verizon.net) (206.46.170.142) by sourceware.org with SMTP; 21 Aug 2004 17:30:13 -0000 Received: from [192.168.0.5] ([4.63.177.128]) by out004.verizon.net (InterMail vM.5.01.06.06 201-253-122-130-106-20030910) with ESMTP id <20040821173012.OPWA28868.out004.verizon.net@[192.168.0.5]> for ; Sat, 21 Aug 2004 12:30:12 -0500 Mime-Version: 1.0 (Apple Message framework v619) Content-Transfer-Encoding: 7bit Message-Id: Content-Type: text/plain; charset=US-ASCII; format=flowed To: gdb@sources.redhat.com From: Tron Thomas Subject: How to step into multi-command statements Date: Sat, 21 Aug 2004 17:30:00 -0000 X-Authentication-Info: Submitted using SMTP AUTH at out004.verizon.net from [4.63.177.128] at Sat, 21 Aug 2004 12:30:12 -0500 X-SW-Source: 2004-08/txt/msg00271.txt.bz2 If I were debugging a program and ran across code like the following: string text; ... formatter.DisplayText(text.c_str()); What commands do I use to step into the DisplayText method of the formatter object? Stepping into the statement takes me into the code for the c_str method of the string class, which I don't care about. After getting into this code I'm finding it impossible to get into the actual code I want. Instead I end up being going to the next statement that follows the call to DisplayText.