@@ -703,7 +703,7 @@ namespace details {
703
703
return pplx::create_task (result_tce);
704
704
}
705
705
706
- basic_file_buffer (_In_ _file_info *info) : m_info(info), streambuf_state_manager<_CharType>(info->m_mode) { }
706
+ basic_file_buffer (_In_ _file_info *info) : streambuf_state_manager<_CharType>(info->m_mode), m_info(info ) { }
707
707
708
708
#if !defined(__cplusplus_winrt)
709
709
static pplx::task<std::shared_ptr<basic_streambuf<_CharType>>> open (
@@ -825,7 +825,7 @@ namespace details {
825
825
class _filestream_callback_read : public details ::_filestream_callback
826
826
{
827
827
public:
828
- _filestream_callback_read (_In_ _file_info *info, pplx::task_completion_event<size_t > op) : m_op(op ), m_info(info ) { }
828
+ _filestream_callback_read (_In_ _file_info *info, pplx::task_completion_event<size_t > op) : m_info(info ), m_op(op ) { }
829
829
830
830
virtual void on_completed (size_t result)
831
831
{
@@ -849,7 +849,7 @@ namespace details {
849
849
class _filestream_callback_putc : public details ::_filestream_callback
850
850
{
851
851
public:
852
- _filestream_callback_putc (_In_ _file_info *info, pplx::task_completion_event<int_type> op, _CharType ch) : m_info(info), m_ch(ch ), m_op(op ) { }
852
+ _filestream_callback_putc (_In_ _file_info *info, pplx::task_completion_event<int_type> op, _CharType ch) : m_info(info), m_op(op ), m_ch(ch ) { }
853
853
854
854
virtual void on_completed (size_t result)
855
855
{
@@ -879,7 +879,7 @@ namespace details {
879
879
class _filestream_callback_bumpc : public details ::_filestream_callback
880
880
{
881
881
public:
882
- _filestream_callback_bumpc (_In_ _file_info *info, pplx::task_completion_event<int_type> op) : m_op(op), m_ch(0 ), m_info(info) { }
882
+ _filestream_callback_bumpc (_In_ _file_info *info, pplx::task_completion_event<int_type> op) : m_ch(0 ), m_info(info), m_op(op ) { }
883
883
884
884
virtual void on_completed (size_t result)
885
885
{
@@ -911,7 +911,7 @@ namespace details {
911
911
class _filestream_callback_getc : public details ::_filestream_callback
912
912
{
913
913
public:
914
- _filestream_callback_getc (_In_ _file_info *info, pplx::task_completion_event<int_type> op) : m_op(op), m_ch(0 ), m_info(info) { }
914
+ _filestream_callback_getc (_In_ _file_info *info, pplx::task_completion_event<int_type> op) : m_ch(0 ), m_info(info), m_op(op ) { }
915
915
916
916
virtual void on_completed (size_t result)
917
917
{
0 commit comments