Mailing-List: contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT sourceware DOT cygnus DOT com Delivered-To: mailing list cygwin AT sourceware DOT cygnus DOT com X-Authentication-Warning: hp2.xraylith.wisc.edu: khan owned process doing -bs Date: Tue, 18 Jan 2000 01:15:08 -0600 (CST) From: Mumit Khan To: "Evgenii B. Rudnyi" cc: cygwin AT sourceware DOT cygnus DOT com Subject: Re: typeid In-Reply-To: <200001151138.OAA07700@comp.chem.msu.su> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Sat, 15 Jan 2000, Evgenii B. Rudnyi wrote: > #include > #include > > class test {}; > > class long_test {}; > > int main() > { > test a; > long_test b; > cout << typeid(a).name() << endl; > cout << typeid(b).name() << endl; > return 0; > } > > under the original gcc in the Cygwin B20.1 and under gcc 2.95.2 > (Mumit Khan) is as follows > > 4test > 9long_test > > where there is a number (number of bytes in the name, as far as I > understand) before a class name. > > Is it a feature or a bug? Feature. See the C++ standard for more information on what compilers are required to produce (hint: unique names, but not necessarily what you would like to see). Please follow up in a C++ specific forum if you have more questions. Regards, Mumit -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com