Skip to content

Commit

Permalink
Const correctness for invalid color vector
Browse files Browse the repository at this point in the history
Co-authored-by: Nathan Young <[email protected]>
  • Loading branch information
imikejackson and nyoungbq authored Oct 19, 2023
1 parent 14a7f62 commit c3b4a08
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ class GenerateColorTableImpl
const std::vector<std::vector<float64>>& m_ControlPoints;
UInt8Array& m_ColorArray;
const complex::IDataArray* m_GoodVoxels = nullptr;
std::vector<uint8> m_InvalidColor;
const std::vector<uint8>& m_InvalidColor;
};

struct GenerateColorArrayFunctor
Expand Down

0 comments on commit c3b4a08

Please sign in to comment.