This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Returned mail: User unknown


The original message was received at Sun, 22 Jun 1997 14:08:59 -0400
from giraffe.sci.ccny.cuny.edu [134.74.120.15]

   ----- The following addresses had delivery problems -----
<gnuwin-32@cygnus.com>  (unrecoverable error)

   ----- Transcript of session follows -----
... while talking to mailhost.cygnus.com.:
>>> RCPT To:<gnuwin-32@cygnus.com>
<<< 550 <gnuwin-32@cygnus.com>... User unknown
550 <gnuwin-32@cygnus.com>... User unknown

   ----- Original message follows -----
Return-Path: <rgr@rio>
Received: from giraffe.sci.ccny.cuny.edu by rio.sci.ccny.cuny.edu (SMI-8.6/SMI-SVR4)
	id OAA15448; Sun, 22 Jun 1997 14:08:59 -0400
Received: by giraffe.sci.ccny.cuny.edu (SMI-8.6/SMI-SVR4)
	id OAA20204; Sun, 22 Jun 1997 14:08:58 -0400
From: rgr@rio (Roger Kuhlman)
Message-Id: <199706221808.OAA20204@giraffe.sci.ccny.cuny.edu>
Subject: Re: bibliotheques
To: gnuwin-32@cygnus.com
Date: Sun, 22 Jun 1997 14:08:58 -0400 (EDT)
In-Reply-To: <33AA9A68.21D9D5D2@gamsau.archi.fr> from "Berenice LOPEZ" at Jun 20, 97 03:57:44 pm
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
content-length: 1266

Greetings:

	I have the same problem as Bernice.  I am porting
a C++ program that passes an istream reference to a class
function(supposedly the Draft says that this is a valid way
to set the input stream to a valid state). 
snip---
istream &operator>>(
  istream      &stream,
  vector_char  &vec
)
{
  long  i;
  char  x;

  vec.set_length(0);

  // Find the first non-whitespace character.

  for (;;) {
    if ( !stream.get(x) ) return NULL;
    if ( !isspace(x) ) break;
  }
--snip
I get the error that the ios reference cunstructor is private ...
I built a cross compiler for b17.1 to get the cplus1 parser,
and am using it with a linux cross for b18, as someone mentioned
in the newsgroup that that was the best way to get 2.7.2.1 syntax
acceptance. 
This code compiles under linux, SunOs4.1.3_U1, Solaris2.5, and AIX
using the 2.7.2.1 compiler.
	Any one have any suggestions? The reason that we chose
G++ for our project 4 yrs ago, was its syntactic seamlesness across
platforms.  I did extensive testing at the time before we accepted
G++ rather than cfront, which varied somewhat platform to platform.

	In advance,thanks.  This Cygwin project is superb--
things have come a long way from b14.  
	Regards,
	Roger Kuhlman
	e-mail: rgr@rio.sci.ccny.cuny.edu


-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]