boost的问题
下载安装之后,
输入测试代码
#include "boost/lambda/lambda.hpp"
#include <iostream>
#include <iterator>
#include <algorithm>
using namespace std;
int main()
{
using namespace boost::lambda;
typedef istream_iterator<int> in;
for_each(
in(scin), in(), cout << (_1 * 3) << " " );
return 0;
}
--------------------Configuration: boost_01 - Win32 Debug--------------------
Compiling...
boost_01.cpp
d:\boost_1_34_0\boost\lambda\detail\lambda_fwd.hpp(26) : fatal error C1001: INTERNAL COMPILER ERROR
(compiler file 'msc1.cpp', line 1786)
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
执行 cl.exe 时出错.
boost_01.exe - 1 error(s), 0 warning(s)
请高手指点一下,我用的VC6.0