From 94a807d42814290ae1aea0bf6fc969bbb7870126 Mon Sep 17 00:00:00 2001 From: zeromus Date: Fri, 20 Jun 2008 22:27:10 +0000 Subject: [PATCH] line ending fix --- src/utils/xstring.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/xstring.h b/src/utils/xstring.h index 0df73964..7a52da0e 100644 --- a/src/utils/xstring.h +++ b/src/utils/xstring.h @@ -58,7 +58,7 @@ char *U16ToHexStr(uint16 a); std::string stditoa(int n); //extracts a decimal uint from an istream -template T templateIntegerDecFromIstream(std::istream* is) +template T templateIntegerDecFromIstream(std::istream* is) { unsigned int ret = 0; bool pre = true; @@ -81,7 +81,7 @@ template T templateIntegerDecFromIstream(std::istream* is) is->unget(); return ret; } - + inline uint32 uint32DecFromIstream(std::istream* is) { return templateIntegerDecFromIstream(is); } inline uint64 uint64DecFromIstream(std::istream* is) { return templateIntegerDecFromIstream(is); }