From 44ca12809d53bfa52cd9cdf3c7d43be2a0deba7e Mon Sep 17 00:00:00 2001 From: gophi Date: Tue, 23 Oct 2012 12:58:05 +0000 Subject: [PATCH] - fixed compilation error with gcc 4.7.2 (thx Magnus Numelin) git-svn-id: http://svn.chmurka.net/owx/trunk/owx@9 8cc89244-2450-4880-90d3-191243f3a0b0 --- ChangeLog | 3 +++ src/file.cc | 1 + 2 files changed, 4 insertions(+) diff --git a/ChangeLog b/ChangeLog index b201c86..ace35e0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ /* $Id$ */ +2012-10-23 +- fixed compilation error with gcc 4.7.2 (thx Magnus Numelin) + 2012-07-22 - added support for semicolon-separated CSV files - fixed warning in import.cc diff --git a/src/file.cc b/src/file.cc index dd5bcfa..bc3edab 100644 --- a/src/file.cc +++ b/src/file.cc @@ -2,6 +2,7 @@ #include #include +#include #include "throw.h" #include "intl.h" #include "file.h"