[Bug c++/60498] error: 'snprintf' was not declared in this scope
csaba_22 at yahoo dot co.uk
gcc-bugzilla@gcc.gnu.org
Sun Mar 16 19:03:00 GMT 2014
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60498
Csaba Ráduly <csaba_22 at yahoo dot co.uk> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |csaba_22 at yahoo dot co.uk
--- Comment #11 from Csaba Ráduly <csaba_22 at yahoo dot co.uk> ---
That is not going to work.
$ gcc -dumpversion
4.8.2
$ gcc -E -dM -x c /dev/null | egrep -i 'ansi|std'
#define _stdcall __attribute__((__stdcall__))
#define __STDC_HOSTED__ 1
#define __stdcall __attribute__((__stdcall__))
#define __STDC__ 1
$ g++ -dumpversion
4.8.2
$ g++ -E -dM -x c++ /dev/null | egrep -i 'ansi|std'
#define _stdcall __attribute__((__stdcall__))
#define __STDC_HOSTED__ 1
#define __stdcall __attribute__((__stdcall__))
#define __STDC__ 1
More information about the Gcc-bugs
mailing list