Changeset 6283bf15 in mainline for uspace/lib/cpp/include/internal/functional/function.hpp
- Timestamp:
- 2018-07-05T21:41:23Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 94ac2ea
- Parents:
- bdc981b
- git-author:
- Dzejrou <dzejrou@…> (2018-05-05 20:14:08)
- git-committer:
- Dzejrou <dzejrou@…> (2018-07-05 21:41:23)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/internal/functional/function.hpp
rbdc981b r6283bf15 30 30 #define LIBCPP_INTERNAL_FUNCTIONAL_FUNCTION 31 31 32 #include <internal/functional/conditional_function_typedefs.hpp> 32 33 #include <internal/functional/reference_wrapper.hpp> 33 34 #include <typeinfo> … … 94 95 template<class R, class... Args> 95 96 class function<R(Args...)> 97 : public aux::conditional_function_typedefs<Args...> 96 98 { 97 99 public: 98 100 using result_type = R; 99 // TODO: conditional typedefs100 101 101 102 /**
Note:
See TracChangeset
for help on using the changeset viewer.