From f6425fe3d87e0734c66725ac3ce9b3c025da9443 Mon Sep 17 00:00:00 2001 From: Phillip Stephens Date: Mon, 10 Oct 2022 02:34:20 -0700 Subject: [PATCH] Minor formatting cleanup Former-commit-id: 111d3b0d70c5264eac8454317ad32e884b277e6f --- src/Runtime/ptmf.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Runtime/ptmf.c b/src/Runtime/ptmf.c index 7561d2fb..b9e8a900 100644 --- a/src/Runtime/ptmf.c +++ b/src/Runtime/ptmf.c @@ -1,16 +1,16 @@ typedef struct PTMF { - long this_delta; // delta to this pointer - long vtbl_offset; // offset in vtable (-1: not a virtual function) + long this_delta; // delta to this pointer + long vtbl_offset; // offset in vtable (-1: not a virtual function) union { - void* func_addr; // nonvirtual function address - long ventry_offset; // offset of virtual function entry in vtable + void* func_addr; //nonvirtual function address + long ventry_offset; // of virtual function entry in vtable } func_data; } PTMF; -const PTMF __ptmf_null = { 0, 0, 0 }; +const PTMF __ptmf_null = {0, 0, 0}; -/* clang-format off*/ +/* clang-format off */ asm void __ptmf_test(register PTMF* ptmf) { nofralloc