zwoop commented on code in PR #11285: URL: https://github.com/apache/trafficserver/pull/11285#discussion_r1576968509
########## include/tscore/ink_memory.h: ########## @@ -103,9 +103,10 @@ int ats_mlock(caddr_t addr, size_t len); void *ats_track_malloc(size_t size, uint64_t *stat); void *ats_track_realloc(void *ptr, size_t size, uint64_t *alloc_stat, uint64_t *free_stat); -void ats_track_free(void *ptr, uint64_t *stat); +void ats_track_free(void *ptr, uint64_t *stat); -static inline size_t __attribute__((const)) ats_pagesize() +static inline size_t __attribute__((const)) +ats_pagesize() Review Comment: Yah, it seems clang-format v18 actually fixed this where the function ought to start where it does. So, this is correct, and the previous clang-format was wrong. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
