aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/llstring.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/llcommon/llstring.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/linden/indra/llcommon/llstring.h b/linden/indra/llcommon/llstring.h
index 2d76eca..720b163 100644
--- a/linden/indra/llcommon/llstring.h
+++ b/linden/indra/llcommon/llstring.h
@@ -4,7 +4,7 @@
4 * 4 *
5 * $LicenseInfo:firstyear=2001&license=viewergpl$ 5 * $LicenseInfo:firstyear=2001&license=viewergpl$
6 * 6 *
7 * Copyright (c) 2001-2008, Linden Research, Inc. 7 * Copyright (c) 2001-2009, Linden Research, Inc.
8 * 8 *
9 * Second Life Viewer Source Code 9 * Second Life Viewer Source Code
10 * The source code in this file ("Source Code") is provided by Linden Lab 10 * The source code in this file ("Source Code") is provided by Linden Lab
@@ -1161,13 +1161,6 @@ BOOL LLStringUtilBase<T>::convertToU32(const std::basic_string<T>& string, U32&
1161 std::basic_istringstream<T> i_stream((std::basic_string<T>)temp); 1161 std::basic_istringstream<T> i_stream((std::basic_string<T>)temp);
1162 if(i_stream >> v) 1162 if(i_stream >> v)
1163 { 1163 {
1164 //TODO: figure out overflow reporting here
1165 //if( ULONG_MAX == v )
1166 //{
1167 // // Underflow or overflow
1168 // return FALSE;
1169 //}
1170
1171 value = v; 1164 value = v;
1172 return TRUE; 1165 return TRUE;
1173 } 1166 }