diff options
Diffstat (limited to 'test/ringbuffer_test.cpp')
-rw-r--r-- | test/ringbuffer_test.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/ringbuffer_test.cpp b/test/ringbuffer_test.cpp index 7fc4042..1c488be 100644 --- a/test/ringbuffer_test.cpp +++ b/test/ringbuffer_test.cpp @@ -14,16 +14,16 @@ along with Raul. If not, see <http://www.gnu.org/licenses/>. */ +#include "raul/RingBuffer.hpp" + #include <climits> +#include <cstdint> #include <cstdio> -#include <cstdlib> #include <cstring> -#include <iostream> +#include <memory> #include <string> #include <thread> -#include "raul/RingBuffer.hpp" - using namespace std; using namespace Raul; |