Hi All,

This post is regarding the issue we saw on IBM compiler using BOOST 1.48 version.
Here is the sample code where we are trying to just include the header file "boost/spirit/include/qi.hpp>".

*********************************Example Code*************************************

#include <iostream>
#include <boost/spirit/include/qi.hpp>

main()
{
using namespace std;
std::cout<<"test"<<"\n";
}



*********************************END**************************************************


When we compile this code on IBM with the compiler :
IBM XL C/C++ for AIX, V11.1 (5724-X13)
Version: 11.01.0000.0000


we end up with below error:
xlC -I /usr/include/boost/1_48_0 -o dump test_prog.cpp


But this code works absolutely fine on g++ Linux.


Looks like the inclusion of this header file on IBM platform is causing the issue.
Is this is a known bug  ?Is any patch available  ?


Thanks,
Abc