Changeset f0c0868 in git for IntegerProgramming


Ignore:
Timestamp:
Oct 21, 2022, 4:16:53 PM (18 months ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
eedce96bd7cce4843c40e5ad4ebd4b53d7fea7fb
Parents:
eb05c0a5033d627c331baf94939608343ced73e8
Message:
fix: tests for fstream.h vs. fstream
File:
1 edited

Legend:

Unmodified
Added
Removed
  • IntegerProgramming/globals.h

    reb05c0a rf0c0868  
    2121#ifndef HAVE_IOSTREAM_H
    2222#include <iostream>
     23#else
     24#include <iostream.h>
     25#endif
     26
     27#ifndef HAVE_FSTREAM_H
    2328#include <fstream>
     29#else
     30#include <fstream.h>
     31#endif
     32
     33#ifndef HAVE_IOMANIP_H
    2434#include <iomanip>
     35#else
     36#include <iomanip.h>
     37#endif
     38
     39#ifndef HAVE_LIMITS_H
    2540#include <limits>
    2641#else
    27 #include <iostream.h>
    28 #include <fstream.h>
    29 #include <iomanip.h>
    3042#include <limits.h>
    3143#endif
     44
    3245#include <stddef.h>
    3346#include <stdlib.h>
Note: See TracChangeset for help on using the changeset viewer.