summaryrefslogtreecommitdiff
path: root/core/variant/method_ptrcall.h
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2021-07-27 15:04:20 +0200
committerGitHub <noreply@github.com>2021-07-27 15:04:20 +0200
commitb4778082d1d8afe74eb5900e114b015faab4a526 (patch)
treec2c8d9ace9daf6881dd7c3992b824cea3acce017 /core/variant/method_ptrcall.h
parent0f38fa2e0c35ea956fb9ddeeb19d014503b974fa (diff)
parent84c37423fba88655d5b40474c4fcafca39da46bb (diff)
Merge pull request #50939 from vnen/fix-variant-bool-conversion
Change Variant bool conversion to uint8_t
Diffstat (limited to 'core/variant/method_ptrcall.h')
-rw-r--r--core/variant/method_ptrcall.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/variant/method_ptrcall.h b/core/variant/method_ptrcall.h
index 7852187b77..8836e257a9 100644
--- a/core/variant/method_ptrcall.h
+++ b/core/variant/method_ptrcall.h
@@ -105,7 +105,7 @@ struct PtrToArg {};
} \
}
-MAKE_PTRARGCONV(bool, uint32_t);
+MAKE_PTRARGCONV(bool, uint8_t);
// Integer types.
MAKE_PTRARGCONV(uint8_t, int64_t);
MAKE_PTRARGCONV(int8_t, int64_t);