Hi, I'm trying to compile Boost 1.37 with PGI 7.0-7 (which does not support some SSE2 instructions, but this is easily managed) and I run into a missing ";" in archive/codecvt_null.hpp when no STD namespace is available: 25 #if defined(BOOST_NO_STDC_NAMESPACE) 26 using ::codecvt; 27 using ::mbstate_t; 28 using ::size_t 29 #endif Line 28 should end with a comma. Matthieu -- Information System Engineer, Ph.D. Website: http://matthieu-brucher.developpez.com/ Blogs: http://matt.eifelle.com and http://blog.developpez.com/?blog=92 LinkedIn: http://www.linkedin.com/in/matthieubrucher
Good call. Robert Ramey Matthieu Brucher wrote:
Hi,
I'm trying to compile Boost 1.37 with PGI 7.0-7 (which does not support some SSE2 instructions, but this is easily managed) and I run into a missing ";" in archive/codecvt_null.hpp when no STD namespace is available:
25 #if defined(BOOST_NO_STDC_NAMESPACE) 26 using ::codecvt; 27 using ::mbstate_t; 28 using ::size_t 29 #endif
Line 28 should end with a comma.
Matthieu
2009/1/6 Bernhard Walle
* Matthieu Brucher [2009-01-06 12:04]:
25 #if defined(BOOST_NO_STDC_NAMESPACE) 26 using ::codecvt; 27 using ::mbstate_t; 28 using ::size_t 29 #endif
Line 28 should end with a comma.
Not a semicolon?
Regards, Bernhard
Sorry, I have some issue with some simple English words :( Matthieu -- Information System Engineer, Ph.D. Website: http://matthieu-brucher.developpez.com/ Blogs: http://matt.eifelle.com and http://blog.developpez.com/?blog=92 LinkedIn: http://www.linkedin.com/in/matthieubrucher
participants (3)
-
Bernhard Walle
-
Matthieu Brucher
-
Robert Ramey