Skip to content
Snippets Groups Projects
Commit 53794a2a authored by Jan David Mol's avatar Jan David Mol
Browse files

bug 1362:

parent 34673c26
No related branches found
No related tags found
No related merge requests found
......@@ -34,6 +34,11 @@ namespace LOFAR {
class CircularBuffer {
public:
CircularBuffer( unsigned capacity ):
buffer(0),
begin(0),
end(0),
head(0),
tail(0),
capacity(capacity),
full(capacity == 0)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment