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 From: "Evgenii B. Rudnyi" 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 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit The output of the program #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? 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