Changeset 346edc8 in git for factory/fac_univar.cc


Ignore:
Timestamp:
Feb 22, 2012, 11:03:36 AM (12 years ago)
Author:
Martin Lee <martinlee84@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
f3a82f4d26a5b3be3272d4081585f856bf75a07c
Parents:
f71453f2ec66e0b065f7b5f2c759e1db2377dd27
git-author:
Martin Lee <martinlee84@web.de>2012-02-22 11:03:36+01:00
git-committer:
Martin Lee <martinlee84@web.de>2012-02-22 15:31:04+01:00
Message:
fix: need std::
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/fac_univar.cc

    rf71453 r346edc8  
    3232#ifdef DEBUGOUTPUT
    3333#define DEBOUTHPRINT(stream, msg, hg) \
    34 {stream << deb_level_msg << msg, stream.flush(); hprint( hg ); stream << endl;}
     34{std::stream << deb_level_msg << msg, std::stream.flush(); hprint( hg ); std::stream << std::endl;}
    3535
    3636static void
     
    3838{
    3939    int n = a[0];
    40     cerr << "( " << n << ": ";
     40    std::cerr << "( " << n << ": ";
    4141    int i = 1;
    4242    while ( i < n ) {
    4343        if ( a[i] != 0 )
    44             cerr << i << " ";
     44            std::cerr << i << " ";
    4545        i++;
    4646    }
    47     cerr << ")";
     47    std::cerr << ")";
    4848}
    4949#else /* DEBUGOUTPUT */
Note: See TracChangeset for help on using the changeset viewer.