From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1LgLFQ-0002nW-4D for garchives@archives.gentoo.org; Sun, 08 Mar 2009 15:49:04 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 18BF5E033C; Sun, 8 Mar 2009 15:49:03 +0000 (UTC) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.177]) by pigeon.gentoo.org (Postfix) with ESMTP id DE9C9E033C for ; Sun, 8 Mar 2009 15:49:02 +0000 (UTC) Received: by wa-out-1112.google.com with SMTP id j4so668377wah.2 for ; Sun, 08 Mar 2009 08:49:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:subject:from:to:in-reply-to :references:content-type:date:message-id:mime-version:x-mailer :content-transfer-encoding; bh=aZm7ROmFYNynp919mIEi6n+pmmYUJfQ7+Nnb2AMLRtQ=; b=uIgftPS/CqwjH0HRkVnwMeK8Vb49jprURGMJlQdtOtvyrWvLNEJxkHtES8DyAn1lWb f/Dj5sL+sQa4wGlYjg/rovMGzFYMPXm93CbTll2+ujIHciPW19caLHLWgRY4IJi3i8dr /SoWSY0AEy92EYvA/5ez5N9SWh/1TCIfXPMys= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:to:in-reply-to:references:content-type:date:message-id :mime-version:x-mailer:content-transfer-encoding; b=gVXQSPLLFe0x5xUZMqCvF+fpNtMniJjYftDJ56xPCy7EsChWucaleSQpnJqN3RKOS+ iuuptj2oII7nkM2uTMwtKANjLkBq6rwkfTag0bRvIvruCIPZwROZhb7M7S78fELlOFXV mhjzkdR3ZhdXVOlR+at9sznPmm+NQnofVRS5s= Received: by 10.114.185.8 with SMTP id i8mr2917729waf.85.1236527342129; Sun, 08 Mar 2009 08:49:02 -0700 (PDT) Received: from ?192.168.1.3? (ppp-70-128-108-39.dsl.tulsok.swbell.net [70.128.108.39]) by mx.google.com with ESMTPS id z20sm9456180pod.12.2009.03.08.08.49.00 (version=SSLv3 cipher=RC4-MD5); Sun, 08 Mar 2009 08:49:01 -0700 (PDT) Subject: Re: [gentoo-user] gcc: error: 'nothrow' was not declared in this scope From: Michael Sullivan To: gentoo-user@lists.gentoo.org In-Reply-To: References: <1236439606.15761.65.camel@camille.espersunited.com> Content-Type: text/plain Date: Sun, 08 Mar 2009 10:48:59 -0500 Message-Id: <1236527339.15761.97.camel@camille.espersunited.com> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org Mime-Version: 1.0 X-Mailer: Evolution 2.22.3.1 Content-Transfer-Encoding: 7bit X-Archives-Salt: 9feaa0cd-1833-405e-a919-54425d0745d9 X-Archives-Hash: 39ef33a06bdfa8971fbfb3c81330afc6 On Sun, 2009-03-08 at 17:27 +0200, Arttu V. wrote: > On 3/7/09, Michael Sullivan wrote: > > michael@camille OurRPG $ make > > g++ -O2 -W -Wall -pedantic `sdl-config --cflags` -c draw.cpp > > enemyparty.o allyparty.o > > /usr/lib/gcc/i686-pc-linux-gnu/4.1.2/include/g++-v4/memory: In function > > 'std::pair<_Tp*, int> std::__get_temporary_buffer(ptrdiff_t, _Tp*)': > > /usr/lib/gcc/i686-pc-linux-gnu/4.1.2/include/g++-v4/memory:83: error: > > 'nothrow' was not declared in this scope > > Have you tried to help the compiler find nothrow declaration by > explicitly doing: > > #include > > (Disclaimer: I'm no c++ guru, just googled for that.) > I put it in there, but it didn't help. Thanks for trying.