Ignore:
Timestamp:
07/19/18 18:09:58 (7 years ago)
Author:
tbretz
Message:
Some minor changes to make it compatible with newer sets of headers.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/WindowLog.h

    r18868 r19064  
    66#include <vector>
    77#include <fstream>
     8#include <functional> // std::bind
    89
    910#include <ncurses.h> // A_NORMAL etc
     
    9596    }
    9697    WindowLog(WindowLog const& log) : std::ios(), std::streambuf(), std::ostream((std::streambuf*)&log), fWindow(log.fWindow), fIsNull(false), fEnableBacklog(true),
    97         fQueueFile(bind(&WindowLog::WriteFile, this, std::placeholders::_1))
     98        fQueueFile(std::bind(&WindowLog::WriteFile, this, std::placeholders::_1))
    9899    {
    99100        //fLogFile.rdbuf()->pubsetbuf(0,0); // Switch off buffering
Note: See TracChangeset for help on using the changeset viewer.