std::ifstream() supports std::ios::ate as a filemode parameter. This options sets the stream position to the end of the file.
nowide's version of ifstream doesn't support this parameter, forcing us to specifically port code from std to nowide.
Fixing this should be easy as ios::ate is equivalent to calling std::fseek(file, 0, SEEK_END) after opening the file.
Anonymous
fixed in cs 2290 in trunk