Changeset 7e91e0f in mainline
- Timestamp:
- 2018-07-05T21:41:17Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- aab972f
- Parents:
- add816c7
- git-author:
- Jaroslav Jindrak <dzejrou@…> (2017-10-13 19:49:22)
- git-committer:
- Dzejrou <dzejrou@…> (2018-07-05 21:41:17)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/impl/type_traits.hpp
radd816c7 r7e91e0f 200 200 { /* DUMMY BODY */ }; 201 201 202 template< >202 template<class T> 203 203 struct is_lvalue_reference<T&>: true_type 204 204 { /* DUMMY BODY */ }; … … 208 208 { /* DUMMY BODY*/ }; 209 209 210 template< >210 template<class T> 211 211 struct is_rvalue_reference<T&&>: true_type 212 212 { /* DUMMY BODY*/ }; … … 262 262 template<class Ret, class... Args> 263 263 struct is_function<Ret(Args......)>: true_type 264 { /* DUMMY BODY */ } 264 { /* DUMMY BODY */ }; 265 265 266 266 template<class Ret, class... Args> … … 479 479 480 480 template<class T> 481 struct is_member_pointer: __is_member_pointer<remove_cv_t<T>>; 481 struct is_member_pointer: __is_member_pointer<remove_cv_t<T>> 482 { /* DUMMY BODY */ }; 482 483 483 484 /**
Note:
See TracChangeset
for help on using the changeset viewer.