| delorie.com/archives/browse.cgi | search |
| Mailing-List: | contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm |
| List-Subscribe: | <mailto:cygwin-subscribe AT sourceware DOT cygnus DOT com> |
| List-Archive: | <http://sourceware.cygnus.com/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT sourceware DOT cygnus DOT com> |
| List-Help: | <mailto:cygwin-help AT sourceware DOT cygnus DOT com>, <http://sourceware.cygnus.com/ml/#faqs> |
| Sender: | cygwin-owner AT sourceware DOT cygnus DOT com |
| Delivered-To: | mailing list cygwin AT sourceware DOT cygnus DOT com |
| From: | "Evgenii B. Rudnyi" <rudnyi AT comp DOT chem DOT msu DOT su> |
| Message-Id: | <200001151138.OAA07700@comp.chem.msu.su> |
| Subject: | typeid |
| To: | cygwin AT sourceware DOT cygnus DOT com |
| Date: | Sat, 15 Jan 2000 14:38:39 +0300 (MSK) |
| X-Mailer: | ELM [version 2.4ME+ PL40 (25)] |
| MIME-Version: | 1.0 |
The output of the program
#include <typeinfo>
#include <iostream>
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?
Evgenii Rudnyi
--
Chemistry Department rudnyi AT comp DOT chem DOT msu DOT su
Moscow State University http://www.chem.msu.su/~rudnyi/
119899 Moscow +7(095)939 5452, fax+7(095)932 8846,+7(095)939 1205
Russia
--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |