$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Christopher Kohlhoff (chris_at_[hidden])
Date: 2006-11-04 18:12:48
Andrew Schweitzer wrote:
> #include "windows.h"
> #include <iostream>
> #include <iterator>
> #include <fstream>
> #include <boost/program_options.hpp>
Try:
  #include <boost/asio.hpp>
  #include "windows.h"
  ...
or:
  #include "winsock2.h"
  #include "windows.h"
  ...
or:
  #define WIN32_LEAN_AND_MEAN
  #include "windows.h"
  ...
 
> : fatal error C1001: INTERNAL COMPILER ERROR
>          (compiler file 'msc1.cpp', line 2701)
>           Please choose the Technical Support command on the Visual C++
>           Help menu, or open the Technical Support help file for more 
> information
Nice.
BTW, yesterday I committed a bunch of fixes and other changes into CVS, so you
may want to update (and hope it doesn't break anything :)
Cheers,
Chris