0
This repository has been archived on 2025-04-25. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Minecraft-Overviewer/overviewer_core
Wunkolo 4298aea569 Fix GCC signed-unsigned and pointer-warnings (#1608)
* Fix GCC signed-unsigned and pointer-warnings

A lot of the signed/unsigned issues are related to the fact that I converted
a lot of indexing values to use unsigned types, little did I know that a lot of
other values used when indexing actually come from the python-end. Python does
not have built-in unsigned types so all integers coming from Python are signed
implicitly so a lot of things like image-size and x, y coordiantes are specially
handling negative-integer cases.

Guess we'll just take our `int32_t i = 0; i < blah; ++i` and like it.

Code now compiles with no warnings or nagging.
2019-07-12 15:26:45 +02:00
..
2019-07-06 19:06:15 +02:00
2019-03-17 17:57:07 +01:00
2019-07-06 19:06:15 +02:00
2019-03-07 15:43:01 +01:00
2019-03-17 17:57:07 +01:00
2019-03-17 17:57:07 +01:00
2019-03-17 17:57:07 +01:00
2016-11-29 09:13:42 -05:00
2019-06-23 12:47:05 -04:00
2019-03-17 17:57:07 +01:00
2019-03-17 17:57:07 +01:00
2019-07-09 13:44:43 +02:00
2019-03-17 17:57:07 +01:00
2019-07-06 19:06:15 +02:00
2019-04-20 10:36:53 +01:00