diff options
Diffstat (limited to 'linden/indra/llcommon/llstring.h')
-rw-r--r-- | linden/indra/llcommon/llstring.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/linden/indra/llcommon/llstring.h b/linden/indra/llcommon/llstring.h index a24f944..adfdfb8 100644 --- a/linden/indra/llcommon/llstring.h +++ b/linden/indra/llcommon/llstring.h | |||
@@ -1074,9 +1074,6 @@ BOOL LLStringBase<T>::isHead( const std::basic_string<T>& string, const T* s ) | |||
1074 | template<class T> | 1074 | template<class T> |
1075 | BOOL LLStringBase<T>::read(std::basic_string<T>& string, const char* filename) /*Flawfinder: ignore*/ | 1075 | BOOL LLStringBase<T>::read(std::basic_string<T>& string, const char* filename) /*Flawfinder: ignore*/ |
1076 | { | 1076 | { |
1077 | #ifdef LL_LINUX | ||
1078 | printf("STUBBED: LLStringBase<T>::read at %s:%d\n", __FILE__, __LINE__); | ||
1079 | #else | ||
1080 | llifstream ifs(filename, llifstream::binary); | 1077 | llifstream ifs(filename, llifstream::binary); |
1081 | if (!ifs.is_open()) | 1078 | if (!ifs.is_open()) |
1082 | { | 1079 | { |
@@ -1091,7 +1088,6 @@ BOOL LLStringBase<T>::read(std::basic_string<T>& string, const char* filename) | |||
1091 | string = oss.str(); | 1088 | string = oss.str(); |
1092 | 1089 | ||
1093 | ifs.close(); | 1090 | ifs.close(); |
1094 | #endif | ||
1095 | return TRUE; | 1091 | return TRUE; |
1096 | } | 1092 | } |
1097 | 1093 | ||