diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2013-01-20 22:28:10 +0100 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2013-01-20 22:28:10 +0100 |
commit | 11b0c18dacbb46541ce0d22e0498abac38d30f7b (patch) | |
tree | df4a36b25a69f318054d10548e8654b7a9a63db9 /test/base | |
parent | bc84caa13d6fcc6d49c3b39e7341fa0c8d9c82ed (diff) | |
download | usdx-11b0c18dacbb46541ce0d22e0498abac38d30f7b.tar.gz usdx-11b0c18dacbb46541ce0d22e0498abac38d30f7b.tar.xz usdx-11b0c18dacbb46541ce0d22e0498abac38d30f7b.zip |
fix includes
Diffstat (limited to 'test/base')
-rw-r--r-- | test/base/ringbuffer.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/base/ringbuffer.cpp b/test/base/ringbuffer.cpp index eb672498..16060570 100644 --- a/test/base/ringbuffer.cpp +++ b/test/base/ringbuffer.cpp @@ -24,10 +24,13 @@ * $Id$ */ -#include "ringbuffer.hpp" +#include <cstddef> #include <cstring> + #include <cppunit/extensions/HelperMacros.h> +#include "ringbuffer.hpp" + namespace usdx { class RingBufferTest : public CppUnit::TestFixture { |