updates
This commit is contained in:
parent
7db38bc9cd
commit
de69e235f4
3 changed files with 13 additions and 6 deletions
|
|
@ -1,4 +1,6 @@
|
|||
#include <stdexcept> // runtime_error
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// FirstBitGA.cpp
|
||||
|
|
@ -8,12 +10,15 @@
|
|||
//
|
||||
//-----------------------------------------------------------------------------
|
||||
// standard includes
|
||||
|
||||
#include <iostream> // cout
|
||||
#include <strstream> // ostrstream, istrstream
|
||||
#include <iostream>
|
||||
#include <stdexcept>
|
||||
#ifdef HAVE_SSTREAM
|
||||
#include <sstream>
|
||||
#else
|
||||
#include <strstream>
|
||||
#endif
|
||||
|
||||
// the general include for eo
|
||||
|
||||
#include <eo>
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
|
|
|||
Reference in a new issue