dead file
This commit is contained in:
parent
ac4231a5b3
commit
756f64eb17
|
@ -1,10 +0,0 @@
|
|||
/**
|
||||
* @file cyclic_buffer.cpp
|
||||
*
|
||||
* @date Dec 8, 2013
|
||||
* @author Andrey Belomutskiy, Daniel Hill (c) 2012-2014
|
||||
* @author Daniel Hill - Modified to use C++ - Mar 2, 2014
|
||||
*/
|
||||
|
||||
#include "cyclic_buffer.h"
|
||||
#include <string.h>
|
|
@ -10,8 +10,7 @@
|
|||
* Daniel Hill - Modified to use C++ - Mar 2, 2014
|
||||
*/
|
||||
|
||||
#ifndef CYCLIC_BUFFER_H
|
||||
#define CYCLIC_BUFFER_H
|
||||
#pragma once
|
||||
|
||||
#include <limits>
|
||||
#include <string.h>
|
||||
|
@ -178,5 +177,3 @@ void cyclic_buffer<T, maxSize>::clear() {
|
|||
count = 0;
|
||||
currentIndex = 0;
|
||||
}
|
||||
|
||||
#endif //CYCLIC_BUFFER_H
|
||||
|
|
|
@ -6,7 +6,6 @@ UTILSRC = \
|
|||
|
||||
UTILSRC_CPP = \
|
||||
$(UTIL_DIR)/histogram.cpp \
|
||||
$(UTIL_DIR)/containers/cyclic_buffer.cpp \
|
||||
$(UTIL_DIR)/containers/listener_array.cpp \
|
||||
$(UTIL_DIR)/containers/local_version_holder.cpp \
|
||||
$(UTIL_DIR)/containers/table_helper.cpp \
|
||||
|
|
Loading…
Reference in New Issue