__va_args__

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kailasn
    New Member
    • Dec 2006
    • 1

    __va_args__

    I am getting compiler error :

    error C2065: '__VA_ARGS__' : undeclared identifier

    I am using Microsoft Visual Stodio 6.0.
    Also I cant see this macro to be defined in ant of standard header files.
  • zeny
    New Member
    • Jul 2006
    • 44

    #2
    Probably you didnt declared a variable correctly, or the identifier is one thing and the compiler expects another, for example, you have an int and the compiler expects a double.

    Comment

    • Banfa
      Recognized Expert Expert
      • Feb 2006
      • 9067

      #3
      Or you may not have included stdarg.h

      Comment

      Working...