dead file

This commit is contained in:
Andrey 2021-11-24 20:26:40 -05:00
parent ac4231a5b3
commit 756f64eb17
3 changed files with 1 additions and 15 deletions

View File

@ -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>

View File

@ -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

View File

@ -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 \