Skip to content

Commit

Permalink
directvt#571 WIP: Fix gcc complaints
Browse files Browse the repository at this point in the history
  • Loading branch information
o-sdn-o committed May 20, 2024
1 parent 4b45a96 commit ec845ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/netxs/desktopio/system.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5769,6 +5769,7 @@ namespace netxs::os
}
#else
//using window = gui::window<gui::x11renderer>;
log("dtvt::window=", dtvt::window, " dtvt::uifont=", dtvt::uifont, " dtvt::fontsz=", dtvt::fontsz, " dtvt::iconic=", dtvt::iconic);
#endif
}
auto splice(xipc client)
Expand Down
2 changes: 1 addition & 1 deletion src/netxs/desktopio/unidata.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -911,7 +911,7 @@ namespace netxs::unidata
auto j = 0;
auto s = 0;
auto l = 0;
for (auto i = 0; i < v.size(); i++)
for (auto i = 0u; i < v.size(); i++)
{
if (l == 0)
{
Expand Down
2 changes: 1 addition & 1 deletion src/netxs/desktopio/unidatagen.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@
auto j = 0;
auto s = 0;
auto l = 0;
for (auto i = 0; i < v.size(); i++)
for (auto i = 0u; i < v.size(); i++)
{{
if (l == 0)
{{
Expand Down

0 comments on commit ec845ca

Please sign in to comment.