diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-05-05 20:31:26 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-05-05 21:09:40 +0200 |
| commit | ad7244de981a7dd0b9b4f8f3d62d4704f1968012 (patch) | |
| tree | 2d5818563e35585b3a45d42b2a7ffd51584592fc /src/modified_gamma_transfer_function.h | |
| parent | f755fd20c0c026128e23a165e3b524a275d6f803 (diff) | |
Use std::vector for LUTs.
Diffstat (limited to 'src/modified_gamma_transfer_function.h')
| -rw-r--r-- | src/modified_gamma_transfer_function.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modified_gamma_transfer_function.h b/src/modified_gamma_transfer_function.h index 34904855..d4e9cf97 100644 --- a/src/modified_gamma_transfer_function.h +++ b/src/modified_gamma_transfer_function.h @@ -77,7 +77,7 @@ public: bool about_equal (std::shared_ptr<const TransferFunction>, double epsilon) const override; protected: - double * make_lut (int bit_depth, bool inverse) const override; + std::vector<double> make_lut (int bit_depth, bool inverse) const override; private: double _power; |
