Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 3446

Show
Ignore:
Timestamp:
04/18/08 01:15:20 (8 months ago)
Author:
kris
Message:

fixes #1051 :: Flipping in DataFileStreams?

Thanks, Aldacron

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/io/stream/DataFileStream.d

    r2809 r3446  
    3434        ***********************************************************************/ 
    3535 
    36         this (FileConduit file, uint buffer=uint.max
     36        this (FileConduit file, uint buffer=uint.max, bool flip=false
    3737        { 
    38                 super (conduit = file, buffer); 
     38                super (conduit = file, buffer, flip); 
    3939        } 
    4040 
     
    8282        ***********************************************************************/ 
    8383 
    84         this (FileConduit file, uint buffer=uint.max
     84        this (FileConduit file, uint buffer=uint.max, bool flip = false
    8585        { 
    86                 super (conduit = file, buffer); 
     86                super (conduit = file, buffer, flip); 
    8787        } 
    8888