xaizek / uncov (License: AGPLv3+) (since 2018-12-07)
Uncov(er) is a tool that collects and processes code coverage reports.
Commit e03f4eedcc5d0466ce9aef4bb732b7cab79fa560

Drop four unused lambda captures
Author: xaizek
Author date (UTC): 2025-08-16 14:06
Committer name: xaizek
Committer date (UTC): 2025-08-16 14:06
Parent(s): cafd4030b8e6dee7794f36ec823d15d7e079d456
Signing key: 99DC5E4DB05F6BE2
Tree: 10e01214c6e86bae8a414f041f930b47fed9f299
File Lines added Lines deleted
web/build.ecpp 1 1
web/changes.ecpp 1 1
web/diff.ecpp 1 1
web/file.ecpp 1 1
File web/build.ecpp changed (mode: 100644) (index 2f21134..bc5fe01)
... ... along with uncov. If not, see <http://www.gnu.org/licenses/>.
30 30
31 31 <%cpp> <%cpp>
32 32 const std::string buildIdStr = request.getArg("buildId"); const std::string buildIdStr = request.getArg("buildId");
33 const int buildId = [&request, &buildIdStr]() {
33 const int buildId = [&buildIdStr]() {
34 34 try { try {
35 35 return std::stoi(buildIdStr); return std::stoi(buildIdStr);
36 36 } catch (const std::exception &) { } catch (const std::exception &) {
File web/changes.ecpp changed (mode: 100644) (index c432865..efcbf78)
... ... along with uncov. If not, see <http://www.gnu.org/licenses/>.
30 30
31 31 <%cpp> <%cpp>
32 32 const std::string buildIdStr = request.getArg("buildId"); const std::string buildIdStr = request.getArg("buildId");
33 const int buildId = [&request, &buildIdStr]() {
33 const int buildId = [&buildIdStr]() {
34 34 try { try {
35 35 return std::stoi(buildIdStr); return std::stoi(buildIdStr);
36 36 } catch (const std::exception &) { } catch (const std::exception &) {
File web/diff.ecpp changed (mode: 100644) (index 7aea51c..4b03e61)
... ... along with uncov. If not, see <http://www.gnu.org/licenses/>.
47 47
48 48 <%cpp> <%cpp>
49 49 const std::string buildIdStr = request.getArg("buildId"); const std::string buildIdStr = request.getArg("buildId");
50 const int buildId = [&request, &buildIdStr]() {
50 const int buildId = [&buildIdStr]() {
51 51 try { try {
52 52 return std::stoi(buildIdStr); return std::stoi(buildIdStr);
53 53 } catch (const std::exception &) { } catch (const std::exception &) {
File web/file.ecpp changed (mode: 100644) (index 6497c2d..183772c)
... ... along with uncov. If not, see <http://www.gnu.org/licenses/>.
39 39
40 40 <%cpp> <%cpp>
41 41 const std::string buildIdStr = request.getArg("buildId"); const std::string buildIdStr = request.getArg("buildId");
42 const int buildId = [&request, &buildIdStr]() {
42 const int buildId = [&buildIdStr]() {
43 43 try { try {
44 44 return std::stoi(buildIdStr); return std::stoi(buildIdStr);
45 45 } catch (const std::exception &) { } catch (const std::exception &) {
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/uncov

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/uncov

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master