bneradt commented on code in PR #9589: URL: https://github.com/apache/trafficserver/pull/9589#discussion_r1162168345
########## include/tscore/Extendible.h: ########## @@ -98,9 +98,9 @@ template <typename T> class has_super_type // C API // context (internally FieldDesc*) -typedef void const *ExtFieldContext; -typedef void *DerivedPtr; -typedef void *FieldPtr; +using ExtFieldContext = const void *; Review Comment: True. And I generally prefer `something const` over `const somethin`, but this is what VSCode auto fixed to. Most of this PR is an application of autofix from VS Code. If you want I'll change it, but the the more the autofix did over me manually doing it, the safer I feel. :) -- 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]
