diff options
author | Jacek Antonelli | 2008-08-15 23:45:35 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:35 -0500 |
commit | 7a29b2d1cd471767b58ea30f53900cd2c5a9637c (patch) | |
tree | a2f7b5eb90ec41f903f2558e57d47f5ebd913a8f /linden/indra/llcommon/llfile.h | |
parent | Second Life viewer sources 1.19.1.0 (diff) | |
download | meta-impy-7a29b2d1cd471767b58ea30f53900cd2c5a9637c.zip meta-impy-7a29b2d1cd471767b58ea30f53900cd2c5a9637c.tar.gz meta-impy-7a29b2d1cd471767b58ea30f53900cd2c5a9637c.tar.bz2 meta-impy-7a29b2d1cd471767b58ea30f53900cd2c5a9637c.tar.xz |
Second Life viewer sources 1.19.1.1
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llcommon/llfile.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/linden/indra/llcommon/llfile.h b/linden/indra/llcommon/llfile.h index 2650775..d449ec9 100644 --- a/linden/indra/llcommon/llfile.h +++ b/linden/indra/llcommon/llfile.h | |||
@@ -127,7 +127,7 @@ public: | |||
127 | typedef std::basic_ios<char,std::char_traits < char > > _Myios; | 127 | typedef std::basic_ios<char,std::char_traits < char > > _Myios; |
128 | 128 | ||
129 | llofstream() | 129 | llofstream() |
130 | : std::basic_ostream<char,std::char_traits < char > >(NULL,true),_Filebuffer(NULL) | 130 | : std::basic_ostream<char,std::char_traits < char > >(NULL,true),_Filebuffer(NULL),_ShouldClose(false) |
131 | { // construct unopened | 131 | { // construct unopened |
132 | } | 132 | } |
133 | 133 | ||
@@ -138,7 +138,8 @@ public: | |||
138 | 138 | ||
139 | explicit llofstream(_Filet *_File) | 139 | explicit llofstream(_Filet *_File) |
140 | : std::basic_ostream<char,std::char_traits < char > >(NULL,true), | 140 | : std::basic_ostream<char,std::char_traits < char > >(NULL,true), |
141 | _Filebuffer(new _Myfb(_File))//_File) | 141 | _Filebuffer(new _Myfb(_File)),//_File) |
142 | _ShouldClose(false) | ||
142 | { // construct with specified C stream | 143 | { // construct with specified C stream |
143 | } | 144 | } |
144 | 145 | ||
@@ -157,6 +158,7 @@ public: | |||
157 | 158 | ||
158 | private: | 159 | private: |
159 | _Myfb *_Filebuffer; // the file buffer | 160 | _Myfb *_Filebuffer; // the file buffer |
161 | bool _ShouldClose; | ||
160 | }; | 162 | }; |
161 | 163 | ||
162 | 164 | ||