Changeset 43ba118 in mainline
- Timestamp:
- 2018-07-05T21:41:18Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ee906a6
- Parents:
- 9b7aef85
- git-author:
- Jaroslav Jindrak <dzejrou@…> (2017-11-11 00:27:47)
- git-committer:
- Dzejrou <dzejrou@…> (2018-07-05 21:41:18)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/impl/numeric.hpp
r9b7aef85 r43ba118 97 97 { 98 98 if (first == last) 99 return ;99 return result; 100 100 101 101 auto acc{*first++}; … … 113 113 { 114 114 if (first == last) 115 return ;115 return result; 116 116 117 117 auto acc{*first++}; … … 133 133 { 134 134 if (first == last) 135 return ;135 return result; 136 136 137 137 auto acc{*first++}; … … 153 153 { 154 154 if (first == last) 155 return ;155 return result; 156 156 157 157 auto acc{*first++};
Note:
See TracChangeset
for help on using the changeset viewer.