aboutsummaryrefslogtreecommitdiffstats
path: root/src/constructs
diff options
context:
space:
mode:
Diffstat (limited to 'src/constructs')
-rw-r--r--src/constructs/srp6/srp6.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/constructs/srp6/srp6.cpp b/src/constructs/srp6/srp6.cpp
index 9ce0d18be..0eccdc154 100644
--- a/src/constructs/srp6/srp6.cpp
+++ b/src/constructs/srp6/srp6.cpp
@@ -77,7 +77,7 @@ std::string srp6_group_identifier(const BigInt& N, const BigInt& g)
*/
try
{
- const std::string group_name = "modp/srp/" + to_string(N.bits());
+ const std::string group_name = "modp/srp/" + std::to_string(N.bits());
DL_Group group(group_name);