diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-10-30 00:50:57 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-11-02 00:12:56 +0100 |
| commit | da15bff6e278d351301c9c50a4c96737ae4b5545 (patch) | |
| tree | 86057f3d8cbca41130fe170791ef341e18bc6283 /test/make_digest_test.cc | |
| parent | ec82ce2d44d5ba492a3dfa6e740ff21549d438e1 (diff) | |
Rename Data -> ArrayData.
Diffstat (limited to 'test/make_digest_test.cc')
| -rw-r--r-- | test/make_digest_test.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/make_digest_test.cc b/test/make_digest_test.cc index ec54c93c..11c410d0 100644 --- a/test/make_digest_test.cc +++ b/test/make_digest_test.cc @@ -31,7 +31,8 @@ files in the program, then also delete it here. */ -#include "data.h" + +#include "array_data.h" #include "util.h" #include <boost/bind.hpp> #include <boost/test/unit_test.hpp> @@ -48,7 +49,7 @@ BOOST_AUTO_TEST_CASE (make_digest_test) /* Make a big file with some random data */ srand (1); int const N = 256 * 1024 * 1024; - dcp::Data data (N); + dcp::ArrayData data (N); uint8_t* p = data.data().get(); for (int i = 0; i < N; ++i) { *p++ = rand() & 0xff; |
