Path: utzoo!attcan!utgpu!jarvis.csri.toronto.edu!rutgers!apple!bloom-beacon!mit-eddie!uw-beaver!uw-june!sullivan From: sullivan@june.cs.washington.edu (Kevin Sullivan) Newsgroups: comp.lang.c++ Subject: va_arg question (continued) Keywords: C++ stdarg Message-ID: <8727@june.cs.washington.edu> Date: 14 Jul 89 19:38:51 GMT Organization: U of Washington, Computer Science, Seattle Lines: 17 I am using cfront 1.2 on a Vax. Evidently our stdarg.h macros fail when the last named argument is a *REFERENCE*. foo(int& i, ...) { ... MACROS DO NOT WORK CORRECTLY } foo(int i, ...) { ... MACROS WORK CORRECTLY } Does someone know of a simple fix? Thanks