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 &) { |