line ending fix

This commit is contained in:
zeromus 2008-06-20 22:27:10 +00:00
parent 8009546872
commit 94a807d428
1 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ char *U16ToHexStr(uint16 a);
std::string stditoa(int n);
//extracts a decimal uint from an istream
template<typename T> T templateIntegerDecFromIstream(std::istream* is)
template<typename T> T templateIntegerDecFromIstream(std::istream* is)
{
unsigned int ret = 0;
bool pre = true;
@ -81,7 +81,7 @@ template<typename T> T templateIntegerDecFromIstream(std::istream* is)
is->unget();
return ret;
}
inline uint32 uint32DecFromIstream(std::istream* is) { return templateIntegerDecFromIstream<uint32>(is); }
inline uint64 uint64DecFromIstream(std::istream* is) { return templateIntegerDecFromIstream<uint64>(is); }