File tree Expand file tree Collapse file tree 1 file changed +0
-26
lines changed Expand file tree Collapse file tree 1 file changed +0
-26
lines changed Original file line number Diff line number Diff line change @@ -827,12 +827,6 @@ namespace streams
827
827
// / </summary>
828
828
streambuf () { }
829
829
830
- // / <summary>
831
- // / Copy constructor.
832
- // / </summary>
833
- // / <param name="other">The source object.</param>
834
- streambuf (const streambuf &other) : m_buffer(other.m_buffer) { }
835
-
836
830
// / <summary>
837
831
// / Converter Constructor.
838
832
// / </summary>
@@ -853,26 +847,6 @@ namespace streams
853
847
" incompatible stream character types" );
854
848
}
855
849
856
- // / <summary>
857
- // / Move constructor.
858
- // / </summary>
859
- // / <param name="other">The source object.</param>
860
- streambuf (streambuf &&other) : m_buffer(std::move(other.m_buffer)) { }
861
-
862
- // / <summary>
863
- // / Assignment operator.
864
- // / </summary>
865
- // / <param name="other">The source object.</param>
866
- // / <returns>A reference to the <c>streambuf</c> object that contains the result of the assignment.</returns>
867
- streambuf & operator =(const streambuf &other) { m_buffer = other.m_buffer ; return *this ; }
868
-
869
- // / <summary>
870
- // / Move operator.
871
- // / </summary>
872
- // / <param name="other">The source object.</param>
873
- // / <returns>A reference to the <c>streambuf</c> object that contains the result of the assignment.</returns>
874
- streambuf & operator =(streambuf &&other) { m_buffer = std::move (other.m_buffer ); return *this ; }
875
-
876
850
// / <summary>
877
851
// / Constructs an input stream head for this stream buffer.
878
852
// / </summary>
You can’t perform that action at this time.
0 commit comments