Return-Path: Delivered-To: apmail-stdcxx-issues-archive@locus.apache.org Received: (qmail 28160 invoked from network); 16 May 2008 01:25:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 16 May 2008 01:25:30 -0000 Received: (qmail 27537 invoked by uid 500); 16 May 2008 01:25:32 -0000 Delivered-To: apmail-stdcxx-issues-archive@stdcxx.apache.org Received: (qmail 27514 invoked by uid 500); 16 May 2008 01:25:32 -0000 Mailing-List: contact issues-help@stdcxx.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@stdcxx.apache.org Delivered-To: mailing list issues@stdcxx.apache.org Received: (qmail 27503 invoked by uid 99); 16 May 2008 01:25:32 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 May 2008 18:25:32 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 May 2008 01:24:36 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 23B9B234C119 for ; Thu, 15 May 2008 18:24:57 -0700 (PDT) Message-ID: <1677722679.1210901097145.JavaMail.jira@brutus> Date: Thu, 15 May 2008 18:24:57 -0700 (PDT) From: "Martin Sebor (JIRA)" To: issues@stdcxx.apache.org Subject: [jira] Resolved: (STDCXX-937) [Sun C++] unsats on std::numeric_limits data members In-Reply-To: <826175632.1210899535623.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/STDCXX-937?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Martin Sebor resolved STDCXX-937. --------------------------------- Resolution: Fixed Fixed. > [Sun C++] unsats on std::numeric_limits data members > ------------------------------------------------------------ > > Key: STDCXX-937 > URL: https://issues.apache.org/jira/browse/STDCXX-937 > Project: C++ Standard Library > Issue Type: Bug > Components: 18. Language Support > Affects Versions: 4.2.1 > Environment: CC: Sun C++ 5.9 SunOS_sparc Patch 124863-01 2007/07/25 > Reporter: Martin Sebor > Assignee: Martin Sebor > Priority: Critical > Fix For: 4.2.2 > > Original Estimate: 2h > Time Spent: 2h > Remaining Estimate: 0h > > As reported [here|http://stdcxx.markmail.org/message/j43dmpav34gdmdr], when using Sun C++ on Solaris, ... > {quote} > Passing {{std::numeric_limits<>}} as an lvalue as in the example below results in undefined symbols for the symbol {{std::numeric_limits<>}} at link time: > {noformat} > #include > #include > #include > int main() { > int i = std::numeric_limits::digits10; > int j = std::min(std::numeric_limits::digits10, 10); > //Undefined Symbols > int j1 = std::max(std::numeric_limits::min_exponent10, 2); > //Undefined Symbols > std::cout << i << std::endl; > std::cout << j << std::endl; > } > Undefined first referenced symbol in file std::numeric_limits::digits10 t.o [Hint: static member std::numeric_limits::digits10 must be defined in the program] > ld: fatal: Symbol referencing errors. No output written to t *** Error code 1 make: Fatal error: Command failed for target `t' > {noformat} > {quote} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.