Changeset 8830faa in mainline
- Timestamp:
- 2018-07-05T21:41:22Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2cb7f53
- Parents:
- 89bc6460
- git-author:
- Dzejrou <dzejrou@…> (2018-04-29 20:21:15)
- git-committer:
- Dzejrou <dzejrou@…> (2018-07-05 21:41:22)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/impl/functional.hpp
r89bc6460 r8830faa 260 260 */ 261 261 struct transparent_t; 262 263 template<class T, class = void> 264 struct is_transparent: false_type 265 { /* DUMMY BODY */ }; 266 267 template<class T> 268 struct is_transparent<T, void_t<typename T::is_transparent>> 269 : true_type 270 { /* DUMMY BODY */ }; 271 272 template<class T> 273 inline constexpr bool is_transparent_v = is_transparent<T>::value; 262 274 } 263 275
Note:
See TracChangeset
for help on using the changeset viewer.