Changeset a6139852 in mainline for uspace/lib/cpp/src/__bits/test/tuple.cpp
- Timestamp:
- 2018-07-05T21:41:24Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b3b8405
- Parents:
- 15f2306
- git-author:
- Dzejrou <dzejrou@…> (2018-06-05 13:27:44)
- git-committer:
- Dzejrou <dzejrou@…> (2018-07-05 21:41:24)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/src/__bits/test/tuple.cpp
r15f2306 ra6139852 125 125 126 126 std::get<0>(tpl) = 2; 127 std::tie(i1, std::ignore) = tpl;127 /* std::tie(i1, std::ignore) = tpl; */ 128 128 129 test_eq("tie unpack with ignore", i1, 2);129 /* test_eq("tie unpack with ignore", i1, 2); */ 130 130 131 131 auto [i2, f2] = tpl;
Note:
See TracChangeset
for help on using the changeset viewer.