http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54289

--- Comment #2 from Daniel Krügler <daniel.kruegler at googlemail dot com> 
2012-08-16 19:38:16 UTC ---
The problem seems still to exist in gcc 4.8.0 20120729 (experimental).

Just to be sure that this is not due to a badly formed error description I
tested to compile the folowing code (C++03 or C++11 mode)

#include <csetjmp>

std::jmp_buf b;

int main()
{
  std::setjmp(b); // Error
}

"In function 'int main()':|
7|error: '_setjmp' is not a member of 'std'|
7|note: suggested alternative:|
c:\program files\develop\gcc\x86_64-w64-mingw32\include\setjmp.h|164|note:  
'_setjmp'|"

Reply via email to