tl-expected 1.0.0~dfsg-3 source package in Ubuntu

Changelog

tl-expected (1.0.0~dfsg-3) unstable; urgency=medium

  * New Include-memory-header.patch (Closes: #1016247)
  * Migrate to Debhelper compatibility level 13.
    - Remove explicit value of the CMAKE_SKIP_INSTALL_ALL_DEPENDENCY variable.
  * Bump Standards-Version to 4.6.1, no required changes

 -- Nicholas Guriev <email address hidden>  Sun, 31 Jul 2022 11:05:37 +0300

Upload details

Uploaded by:
Nicholas Guriev
Uploaded to:
Sid
Original maintainer:
Nicholas Guriev
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Lunar release universe misc
Kinetic release universe misc

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
tl-expected_1.0.0~dfsg-3.dsc 1.3 KiB c1ac8638d9010c736927abad7841f0a816872f70b6cd616d799ffddca7e32b15
tl-expected_1.0.0~dfsg.orig.tar.xz 19.4 KiB 643b32aea2e13650abd7b187f9623302efaa089d6058ebf8ebcb1996024bcc65
tl-expected_1.0.0~dfsg-3.debian.tar.xz 4.0 KiB 8b114ddd80a6c5c16a62c4f62795f48cb981b45ace00feef9f89b91699d59244

Available diffs

No changes file available.

Binary packages built by this source

libexpected-dev: C++11/14/17 std::expected with functional-style extensions

 Single header implementation of std::expected with functional-style extensions.
 .
 std::expected is proposed as the preferred way to represent object which will
 either have an expected value, or an unexpected value giving information about
 why something failed. Unfortunately, chaining together many computations which
 may fail can be verbose, as error-checking code will be mixed in with the
 actual programming logic. This implementation provides a number of utilities to
 make coding with expected cleaner.