From owner-freebsd-chat@FreeBSD.ORG Wed Apr 23 18:55:45 2003 Return-Path: Delivered-To: freebsd-chat@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77C4337B401 for ; Wed, 23 Apr 2003 18:55:45 -0700 (PDT) Received: from out002.verizon.net (out002pub.verizon.net [206.46.170.141]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9908843F93 for ; Wed, 23 Apr 2003 18:55:44 -0700 (PDT) (envelope-from dacut@kanga.org) Received: from kanga.org ([68.162.155.185]) by out002.verizon.net (InterMail vM.5.01.05.33 201-253-122-126-133-20030313) with ESMTP id <20030424015543.SWCG22632.out002.verizon.net@kanga.org> for ; Wed, 23 Apr 2003 20:55:43 -0500 Message-ID: <3EA7441F.9080903@kanga.org> Date: Wed, 23 Apr 2003 21:55:43 -0400 From: David Cuthbert User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.2.1) Gecko/20030225 X-Accept-Language: en-us, en MIME-Version: 1.0 To: chat@freebsd.org References: <5.0.2.1.1.20030422171035.01c5e258@popserver.sfu.ca> <5.0.2.1.1.20030422205617.0387b378@popserver.sfu.ca> <3EA5A53F.3016395C@mindspring.com> In-Reply-To: <3EA5A53F.3016395C@mindspring.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at out002.verizon.net from [68.162.155.185] at Wed, 23 Apr 2003 20:55:43 -0500 Subject: Re: Code layout and debugging time X-BeenThere: freebsd-chat@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Non technical items related to the community List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Apr 2003 01:55:45 -0000 Terry Lambert wrote: > People with "vi" (and people who know how to use "grep") tend > to declare functions: > > int > foo(void) > > Rather than: > > int foo(void) Actually, I tend to do this, too, though the thought of using it for grep never occurred to me. Basically, what happened is I started writing C++ template code. That short little "int foo(void)" became: inline template T * MyContainer::foo() const Uh, yeah. Where's that function/method name again? :-)