diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-11-01 23:40:01 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-11-02 23:10:04 +0100 |
| commit | 6fa9748f382302fa88292b4219598bb81edc7bd0 (patch) | |
| tree | 83f0859c934da2293913efb2c5ba029526e5634d /test/test.cc | |
| parent | b639b7b20f1ab341194bcd5c76700ca419254d11 (diff) | |
Replace dcp::Data with dcp::ArrayData
Diffstat (limited to 'test/test.cc')
| -rw-r--r-- | test/test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.cc b/test/test.cc index 03e8768f4..9ac202b80 100644 --- a/test/test.cc +++ b/test/test.cc @@ -687,7 +687,7 @@ write_image (shared_ptr<const Image> image, boost::filesystem::path file) png_destroy_write_struct (&png_ptr, &info_ptr); png_free (png_ptr, row_pointers); - dcp::Data(state.data, state.size).write(file); + dcp::ArrayData(state.data, state.size).write(file); } |
