summaryrefslogtreecommitdiff
path: root/indra/llcommon/llstring.h
diff options
context:
space:
mode:
authorAndrew Meadows <andrew@lindenlab.com>2008-10-10 16:04:02 +0000
committerAndrew Meadows <andrew@lindenlab.com>2008-10-10 16:04:02 +0000
commit5f3875018ee9977917d6fff5f2c2cf87db41ce3e (patch)
tree63ae291bed617d557b5c745a614a2e1cf21e9469 /indra/llcommon/llstring.h
parent4ff16b735f59326514ad92ec38e3261cd996e05c (diff)
svn merge -r99056:99248 svn+ssh://svn.lindenlab.com/svn/linden/branches/andrew/gcc-4-003-for-merge
Diffstat (limited to 'indra/llcommon/llstring.h')
-rw-r--r--indra/llcommon/llstring.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/indra/llcommon/llstring.h b/indra/llcommon/llstring.h
index a3a5f40414..9f2cb8b71b 100644
--- a/indra/llcommon/llstring.h
+++ b/indra/llcommon/llstring.h
@@ -1161,13 +1161,6 @@ BOOL LLStringUtilBase<T>::convertToU32(const std::basic_string<T>& string, U32&
std::basic_istringstream<T> i_stream((std::basic_string<T>)temp);
if(i_stream >> v)
{
- //TODO: figure out overflow reporting here
- //if( ULONG_MAX == v )
- //{
- // // Underflow or overflow
- // return FALSE;
- //}
-
value = v;
return TRUE;
}