From owner-freebsd-hackers Sun May 11 12:45:37 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id MAA10489 for hackers-outgoing; Sun, 11 May 1997 12:45:37 -0700 (PDT) Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id MAA10484 for ; Sun, 11 May 1997 12:45:34 -0700 (PDT) Received: from rover.village.org [127.0.0.1] by rover.village.org with esmtp (Exim 1.60 #1) id 0wQeYG-00032k-00; Sun, 11 May 1997 13:45:00 -0600 To: Timothy Moore Subject: Re: g++ shared library segfaults Cc: freebsd-hackers@freebsd.org In-reply-to: Your message of "Fri, 09 May 1997 16:28:53 PDT." <199705092328.QAA24652@gonzo.wolfenet.com> References: <199705092328.QAA24652@gonzo.wolfenet.com> Date: Sun, 11 May 1997 13:45:00 -0600 From: Warner Losh Message-Id: Sender: owner-hackers@freebsd.org X-Loop: FreeBSD.org Precedence: bulk In message <199705092328.QAA24652@gonzo.wolfenet.com> Timothy Moore writes: : Uh, that's not an illegal reference. The scope of i extends to the : end of the containing block, not the end of the "for" statement. No. That's not right. It, per the new C++ standard, now extends to the end of the for block. ANSI changed that. Warner