Skip to content

Commit

Permalink
ci: include cstdint in netlist
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbbert committed May 8, 2024
1 parent e58c76c commit 865a4f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion 3rdparty/bgfx/examples/common/nanovg/fontstash.h
Original file line number Diff line number Diff line change
Expand Up @@ -1651,7 +1651,7 @@ void fonsDeleteInternal(FONScontext* stash)
if (stash->texData) free(stash->texData);
if (stash->scratch) free(stash->scratch);
fons__tt_done(stash);
free(stash);
free(stash); // HBMAME fixed use after free
}

void fonsSetErrorCallback(FONScontext* stash, void (*callback)(void* uptr, int error, int val), void* uptr)
Expand Down
1 change: 1 addition & 0 deletions src/lib/netlist/plib/ptypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#include "pconfig.h"

#include <limits>
#include <cstdint> // HBMAME for CI
#include <string>
#include <type_traits>

Expand Down

0 comments on commit 865a4f3

Please sign in to comment.