diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/ppm_pixel_stream.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/ppm_pixel_stream.cc b/src/ppm_pixel_stream.cc index 465584b..430eb15 100644 --- a/src/ppm_pixel_stream.cc +++ b/src/ppm_pixel_stream.cc @@ -18,7 +18,6 @@ ppm_pixel_stream::ppm_pixel_stream( const std::size_t height ): stream_() { this->stream_.open(path, std::ios::binary | std::ios::out); - this->stream_.sync_with_stdio(false); this->stream_ << "P6\n" << width << " " << height << "\n255\n"; } |