fix compile issue with gcc 4.3
This commit is contained in:
parent
d90befb430
commit
90f4f1ecc1
2 changed files with 9 additions and 0 deletions
|
@ -1,5 +1,8 @@
|
||||||
(Format: Year/Month/Day)
|
(Format: Year/Month/Day)
|
||||||
Changes for 1.0.1:
|
Changes for 1.0.1:
|
||||||
|
*07/12/14:
|
||||||
|
* Fix compiling with gcc 4.3 (thanks Dmitry E. Oboukhov)
|
||||||
|
main.cc
|
||||||
*07/12/13:
|
*07/12/13:
|
||||||
* Fix configure option --with-style (thanks Slava Semushin)
|
* Fix configure option --with-style (thanks Slava Semushin)
|
||||||
configure.in Makefile.am
|
configure.in Makefile.am
|
||||||
|
|
|
@ -45,6 +45,12 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef HAVE_CSTRING
|
||||||
|
#include <cstring>
|
||||||
|
#else
|
||||||
|
#include <string.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
|
|
Loading…
Reference in a new issue