mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 06:05:58 -04:00
Use unsigned char in RGBColor.
This commit is contained in:
parent
cd3b05a3f6
commit
43488e0286
2 changed files with 5 additions and 5 deletions
|
|
@ -35,7 +35,7 @@ extern std::vector<Plot> plots; //!< Plot instance container
|
|||
// RGBColor holds color information for plotted objects
|
||||
//===============================================================================
|
||||
|
||||
typedef std::array<char, 3> RGBColor;
|
||||
typedef std::array<unsigned char, 3> RGBColor;
|
||||
|
||||
typedef xt::xtensor<RGBColor, 2> ImageData;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue