https://github.com/snprajwal updated
https://github.com/llvm/llvm-project/pull/146182
>From 398c55dd352e0f38f5dc5b85a9f6dca836706597 Mon Sep 17 00:00:00 2001
From: Prajwal Nadig
Date: Sat, 28 Jun 2025 01:33:42 +0100
Subject: [PATCH] [ExtractAPI] Format pointer types correctly
Pointer types in
https://github.com/snprajwal updated
https://github.com/llvm/llvm-project/pull/146182
>From 885730f8653edc7bef13b3840f0c662cc354f111 Mon Sep 17 00:00:00 2001
From: Prajwal Nadig
Date: Sat, 28 Jun 2025 01:33:42 +0100
Subject: [PATCH] [ExtractAPI] Format pointers in params correctly
Pointer type
github-actions[bot] wrote:
:warning: C/C++ code formatter, clang-format found issues in your code.
:warning:
You can test this locally with the following command:
``bash
git-clang-format --diff HEAD~1 HEAD --extensions c,cpp --
clang/test/ExtractAPI/pointers.c clang/lib/ExtractA
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Prajwal Nadig (snprajwal)
Changes
Pointer types in function parameters must place the asterisk before the
identifier without a space in between. This patch removes the space and also
ensures that pointers to pointers are formatted correct
https://github.com/snprajwal created
https://github.com/llvm/llvm-project/pull/146182
Pointer types in function parameters must place the asterisk before the
identifier without a space in between. This patch removes the space and also
ensures that pointers to pointers are formatted correctly.