From stdcxx-dev-return-3907-apmail-incubator-stdcxx-dev-archive=incubator.apache.org@incubator.apache.org Sat Jul 07 22:34:25 2007 Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 73960 invoked from network); 7 Jul 2007 22:34:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 7 Jul 2007 22:34:25 -0000 Received: (qmail 44767 invoked by uid 500); 7 Jul 2007 22:34:28 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 44758 invoked by uid 500); 7 Jul 2007 22:34:28 -0000 Mailing-List: contact stdcxx-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: stdcxx-dev@incubator.apache.org Delivered-To: mailing list stdcxx-dev@incubator.apache.org Received: (qmail 44746 invoked by uid 99); 7 Jul 2007 22:34:28 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Jul 2007 15:34:28 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Jul 2007 15:34:24 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 7B240714168 for ; Sat, 7 Jul 2007 15:34:04 -0700 (PDT) Message-ID: <17140362.1183847644486.JavaMail.jira@brutus> Date: Sat, 7 Jul 2007 15:34:04 -0700 (PDT) From: "Martin Sebor (JIRA)" To: stdcxx-dev@incubator.apache.org Subject: [jira] Assigned: (STDCXX-125) [aCC 3.63/HP-UX 11.23] wctob undeclared in In-Reply-To: <2044181609.1138224609410.JavaMail.jira@ajax.apache.org> 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-125?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Martin Sebor reassigned STDCXX-125: ----------------------------------- Assignee: Martin Sebor > [aCC 3.63/HP-UX 11.23] wctob undeclared in > ---------------------------------------------------- > > Key: STDCXX-125 > URL: https://issues.apache.org/jira/browse/STDCXX-125 > Project: C++ Standard Library > Issue Type: Bug > Components: 21. Strings > Affects Versions: 4.1.3 > Environment: aCC 3.63 on HP-UX 11.23/PA > Reporter: Martin Sebor > Assignee: Martin Sebor > Fix For: 4.1.2 > > > The program below fails to compile with aCC 3.63 on HP-UX 11.23 even though it compiles fine with the native library. > $ cat t.cpp && uname -sr && aCC -V && aCC -AA t.cpp && gmake t > #include > int main () > { > wctob (0); > std::wctob (0); > } > HP-UX B.11.23 > aCC: HP ANSI C++ B3910B A.03.63 > aCC -c -I/build/sebor/dev/stdlib/include/ansi -I/usr/include -mt -D_RWSTD_USE_CONFIG -I/build/sebor/aCC-3.63-12d/include -I/build/sebor/dev/stdlib/include -I/build/sebor/dev/stdlib/../rwtest -I/build/sebor/dev/stdlib/../rwtest/include -I/build/sebor/dev/stdlib/tests/include -Aa +nostl +O2 +w +W392 +W655 +W684 +W818 +W819 +W849 t.cpp > Error 403: "t.cpp", line 5 # Undeclared variable 'wctob'. Perhaps 'wctomb' as > in "int wctomb(char *,wchar_t)" ["/usr/include/../include/stdlib.h", line > 181] was intended. > wctob (0); > ^^^^^ > Error 403: "t.cpp", line 6 # Undeclared variable 'wctob'. Perhaps 'wctomb' as > in "int wctomb(char *,wchar_t)" ["/usr/include/../include/stdlib.h", line > 181] was intended. > std::wctob (0); > ^^^^^^^^^^ > gmake: *** [t.o] Error 2 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.