This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: __op ? with gcc/egcs



>   Did I missed something obvious ?
>   Is ``__op'', a reserved word with egcs/g++ ?

*All* identifiers with two leading underscores are reserved to the
implementation, for any C or C++ compiler.  If you use any such names
and you aren't writing the standard C or C++ library, you're violating
the standard.  So don't do that!

g++ uses some names of this form for overloaded operators.  I'm not
sure what __op is.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]