Skip to content

Commit 16c1cad

Browse files
committed
!fixup fix formatting
1 parent a1db9f2 commit 16c1cad

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

llvm/include/llvm/Option/ArgList.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -253,8 +253,8 @@ class ArgList {
253253
}
254254

255255
/// Return the last argument matching \p Id, or null.
256-
template<typename ...OptSpecifiers>
257-
LLVM_ATTRIBUTE_NOINLINE Arg * getLastArg(OptSpecifiers ...Ids) const {
256+
template <typename... OptSpecifiers>
257+
LLVM_ATTRIBUTE_NOINLINE Arg *getLastArg(OptSpecifiers... Ids) const {
258258
Arg *Res = nullptr;
259259
for (Arg *A : filtered(Ids...)) {
260260
Res = A;
@@ -265,8 +265,8 @@ class ArgList {
265265

266266
/// Return the last argument matching \p Id, or null. Do not "claim" the
267267
/// option (don't mark it as having been used).
268-
template<typename ...OptSpecifiers>
269-
LLVM_ATTRIBUTE_NOINLINE Arg * getLastArgNoClaim(OptSpecifiers ...Ids) const {
268+
template <typename... OptSpecifiers>
269+
LLVM_ATTRIBUTE_NOINLINE Arg *getLastArgNoClaim(OptSpecifiers... Ids) const {
270270
for (Arg *A : filtered_reverse(Ids...))
271271
return A;
272272
return nullptr;

0 commit comments

Comments
 (0)