diff options
author | Ira Rice <irarice@gmail.com> | 2008-11-08 19:57:51 +0000 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2008-11-08 19:57:51 +0000 |
commit | b51c608c07a48a2c6d4fb6332a4ba436510e3273 (patch) | |
tree | 73d7b831b51897046669b579229dc6884f2293fc /src/utils | |
parent | 38360d3cd26b61a5162b8ec5b526de19e39835f9 (diff) | |
download | mana-b51c608c07a48a2c6d4fb6332a4ba436510e3273.tar.gz mana-b51c608c07a48a2c6d4fb6332a4ba436510e3273.tar.bz2 mana-b51c608c07a48a2c6d4fb6332a4ba436510e3273.tar.xz mana-b51c608c07a48a2c6d4fb6332a4ba436510e3273.zip |
Ported a TMW compile error fix reported by Martin Michlmayr.
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/strprintf.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/utils/strprintf.cpp b/src/utils/strprintf.cpp index 352696f1..48fc3814 100644 --- a/src/utils/strprintf.cpp +++ b/src/utils/strprintf.cpp @@ -21,10 +21,8 @@ * $Id: strprintf.cpp 3416 2007-08-06 06:20:14Z gmelquio $ */ -#ifndef _TMW_UTILS_TOSTRING_H -#define _TMW_UTILS_TOSTRING_H - #include <cstdarg> +#include <cstdio> #include "strprintf.h" @@ -50,4 +48,3 @@ std::string strprintf(char const *format, ...) return res; } -#endif |