ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/branches/new_design/OOPSE-2.0/src/io/basic_ifstrstream.hpp
(Generate patch)

Comparing branches/new_design/OOPSE-2.0/src/io/basic_ifstrstream.hpp (file contents):
Revision 1882 by tim, Thu Dec 2 16:04:19 2004 UTC vs.
Revision 1883 by tim, Mon Dec 13 22:30:27 2004 UTC

# Line 226 | Line 226 | class basic_ifstrstream : public std::basic_istream<_C
226  
227                  if (fin.is_open()) {
228                      
229 <                    fin.seekg(0, ios::end);
229 >                    fin.seekg(0, std::ios::end);
230                      fileSize = fin.tellg();
231 <                    fin.seekg(0, ios::beg);
231 >                    fin.seekg(0, std::ios::beg);
232                      
233                      // '\0' need one more char
234                      fbuf = new char[fileSize+1];

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines