mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
[GH-ISSUE #96] Some warnings in Core and CtrlLib #50
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/ultimatepp#50
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @izabala123 on GitHub (Sep 21, 2022).
Original GitHub issue: https://github.com/ultimatepp/ultimatepp/issues/96
upp\uppsrc\core\Other.h(123): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
--> This is because strlen() returns size_t, and it is used to set an int
upp\uppsrc\core\Other.h(143): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
--> This is because GetPackedSize() returns size_t, and it is used to set an int
upp\uppsrc\CtrlLib/DropChoice.h(83): warning C4099: 'Upp::PopUpList::Popup': type name first seen using 'struct' now seen using 'class'
--> This is because PopUp has been declared as 'struct', but later it is used as 'class'