Skip to content

Commit 111bd27

Browse files
committed
Separated them for consistensy
1 parent 818dd7b commit 111bd27

File tree

1 file changed

+6
-6
lines changed
  • toolchain/toolchain/stdincludes/gnu_stl

1 file changed

+6
-6
lines changed

toolchain/toolchain/stdincludes/gnu_stl/stl.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -156,16 +156,16 @@ using stl_weak_ptr = std::__ndk1::weak_ptr<_Tp>;
156156
// std::function
157157
template<typename... Args>
158158
struct stl_function_impl;
159-
template<typename Signature>
159+
template<typename _Signature>
160160
struct stl_function_impl<_Signature> {
161161
using type = std::__ndk1::function<_Signature>;
162162
};
163163
template<typename _Res, typename... _ArgTypes>
164164
struct stl_function_impl<_Res, _ArgTypes...> {
165165
using type = std::__ndk1::function<_Res(_ArgTypes...)>;
166166
};
167-
template<typename... Args>
168-
using stl_function = typename stl_function_impl<Args...>::type;
167+
template<typename... _Args>
168+
using stl_function = typename stl_function_impl<_Args...>::type;
169169

170170
inline std::string to_std(std::__ndk1::string const& s) {
171171
return std::string(s.data());
@@ -219,7 +219,7 @@ template<typename _Tp>
219219
using stl_weak_ptr = std::weak_ptr<_Tp>;
220220

221221
// std::function
222-
template<typename... _Args>
222+
template<typename... Args>
223223
struct stl_function_impl;
224224
template<typename _Signature>
225225
struct stl_function_impl<_Signature> {
@@ -229,8 +229,8 @@ template<typename _Res, typename... _ArgTypes>
229229
struct stl_function_impl<_Res, _ArgTypes...> {
230230
using type = std::function<_Res(_ArgTypes...)>;
231231
};
232-
template<typename... Args>
233-
using stl_function = typename stl_function_impl<Args...>::type;
232+
template<typename... _Args>
233+
using stl_function = typename stl_function_impl<_Args...>::type;
234234

235235
#define to_std(X) X
236236
#define to_stl(X) X

0 commit comments

Comments
 (0)