Skip to content

Commit

Permalink
directvt#400 WIP: Fix gcc complaints
Browse files Browse the repository at this point in the history
  • Loading branch information
o-sdn-o committed Oct 25, 2023
1 parent bad1893 commit 3c750fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/netxs/desktopio/canvas.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1652,7 +1652,7 @@ namespace netxs
};
struct xlight_t
{
si32 factor = 1;
si32 factor; // Uninitialized.
template<class T>
inline auto operator [] (T param) const
{
Expand Down Expand Up @@ -1762,7 +1762,7 @@ namespace netxs
static constexpr auto skipnuls = skipnuls_t{};
static constexpr auto text = text_t{};
static constexpr auto meta = meta_t{};
static constexpr auto xlight = xlight_t{};
static constexpr auto xlight = xlight_t{ 1 };
static constexpr auto invert = invert_t{};
static constexpr auto reverse = reverse_t{};
static constexpr auto invbit = invbit_t{};
Expand Down

0 comments on commit 3c750fb

Please sign in to comment.