← Back to team overview

dolfin team mailing list archive

portability issue

 

In kernel/log/Logger.cpp, the following unportable header is included:

 

#include <uninst.h>

 

In MinGW and Windows this is equivalent to io.h, so replacing the above with

 

#include <io.h>

 

Will make this portable.

 

Theo


Follow ups