From 3c11ab0c40c0c960affffcb5399f1323367e50d8 Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Sun, 11 Apr 2021 06:58:15 +0000 Subject: [PATCH] clang-format and clang-tidy fixes for 2c41f111 --- ciphers/uint256_t.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ciphers/uint256_t.hpp b/ciphers/uint256_t.hpp index b90d7ca93..1245c5a01 100644 --- a/ciphers/uint256_t.hpp +++ b/ciphers/uint256_t.hpp @@ -198,7 +198,7 @@ class uint256_t { */ inline uint256_t operator+(const uint256_t &p) { bool app = (s + p.s < s); - return uint256_t(f + p.f + app, p.s + s); + return {f + p.f + app, p.s + s}; } /** @@ -266,7 +266,7 @@ class uint256_t { */ inline uint256_t operator-(const uint256_t &p) { bool app = p.s > s; - return uint256_t(f - p.f - app, s - p.s); + return {f - p.f - app, s - p.s}; } /**