Update generated files for int/char typedef removal (see #3507)

This commit is contained in:
Marshall Greenblatt
2023-06-01 17:07:20 +03:00
parent 5042d71408
commit b854992ae6
102 changed files with 377 additions and 375 deletions

View File

@@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=5bd2fb1e0278480edade1fa59ea7321ca39cfa19$
// $hash=7e4a0a11aab2b3b4cfedb6cd6efe099b154a9063$
//
#include "libcef_dll/ctocpp/write_handler_ctocpp.h"
@@ -42,7 +42,7 @@ size_t CefWriteHandlerCToCpp::Write(const void* ptr, size_t size, size_t n) {
}
NO_SANITIZE("cfi-icall")
int CefWriteHandlerCToCpp::Seek(int64 offset, int whence) {
int CefWriteHandlerCToCpp::Seek(int64_t offset, int whence) {
shutdown_checker::AssertNotShutdown();
cef_write_handler_t* _struct = GetStruct();
@@ -59,7 +59,7 @@ int CefWriteHandlerCToCpp::Seek(int64 offset, int whence) {
return _retval;
}
NO_SANITIZE("cfi-icall") int64 CefWriteHandlerCToCpp::Tell() {
NO_SANITIZE("cfi-icall") int64_t CefWriteHandlerCToCpp::Tell() {
shutdown_checker::AssertNotShutdown();
cef_write_handler_t* _struct = GetStruct();
@@ -70,7 +70,7 @@ NO_SANITIZE("cfi-icall") int64 CefWriteHandlerCToCpp::Tell() {
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
int64 _retval = _struct->tell(_struct);
int64_t _retval = _struct->tell(_struct);
// Return type: simple
return _retval;