Skip to content

Commit 08be187

Browse files
args: use Ts/vs instead of Args/args
This is less confusing.
1 parent f90fd56 commit 08be187

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

args.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,8 @@ struct args
129129

130130
void add(arg);
131131

132-
template<typename... Args>
133-
void add(Args&&... args) { add(arg{ std::forward<Args>(args)... }); }
132+
template<typename... Ts>
133+
void add(Ts&&... vs) { add(arg{ std::forward<Ts>(vs)... }); }
134134

135135
argval const& operator[](string_view) const;
136136

0 commit comments

Comments
 (0)