mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-04-25 11:03:23 +08:00
style: resolve -Wreorder (#2950)
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com>
This commit is contained in:
@@ -72,7 +72,7 @@ class uint256_t {
|
||||
*/
|
||||
template <typename T, typename = typename std::enable_if<
|
||||
std::is_integral<T>::value, T>::type>
|
||||
explicit uint256_t(T low) : s(low), f(0) {}
|
||||
explicit uint256_t(T low) : f(0), s(low) {}
|
||||
|
||||
/**
|
||||
* @brief Parameterized constructor
|
||||
|
||||
Reference in New Issue
Block a user