diff options
Diffstat (limited to 'contrib/dotzlib/DotZLib/CircularBuffer.cs')
-rw-r--r-- | contrib/dotzlib/DotZLib/CircularBuffer.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/dotzlib/DotZLib/CircularBuffer.cs b/contrib/dotzlib/DotZLib/CircularBuffer.cs index 16997e9..c1cab3a 100644 --- a/contrib/dotzlib/DotZLib/CircularBuffer.cs +++ b/contrib/dotzlib/DotZLib/CircularBuffer.cs | |||
@@ -1,7 +1,7 @@ | |||
1 | // | 1 | // |
2 | // © Copyright Henrik Ravn 2004 | 2 | // © Copyright Henrik Ravn 2004 |
3 | // | 3 | // |
4 | // Use, modification and distribution are subject to the Boost Software License, Version 1.0. | 4 | // Use, modification and distribution are subject to the Boost Software License, Version 1.0. |
5 | // (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | 5 | // (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
6 | // | 6 | // |
7 | 7 | ||
@@ -25,7 +25,7 @@ namespace DotZLib | |||
25 | #endregion | 25 | #endregion |
26 | 26 | ||
27 | public CircularBuffer(int capacity) | 27 | public CircularBuffer(int capacity) |
28 | { | 28 | { |
29 | Debug.Assert( capacity > 0 ); | 29 | Debug.Assert( capacity > 0 ); |
30 | _buffer = new byte[capacity]; | 30 | _buffer = new byte[capacity]; |
31 | _capacity = capacity; | 31 | _capacity = capacity; |