Merge pull request #16801 from Chocobo1/int

Migrate away from unsigned integer types
This commit is contained in:
Chocobo1
2022-04-04 13:13:36 +08:00
committed by GitHub
14 changed files with 62 additions and 67 deletions

View File

@@ -12,7 +12,7 @@
#include <vector>
/** Print a demangled stack backtrace of the caller function to FILE* out. */
static inline void print_stacktrace(FILE *out = stderr, unsigned int max_frames = 63)
static inline void print_stacktrace(FILE *out = stderr, const int max_frames = 63)
{
fprintf(out, "Stack trace:\n");