aboutsummaryrefslogtreecommitdiffstats
path: root/src/wrap/python/python_botan.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wrap/python/python_botan.h')
-rw-r--r--src/wrap/python/python_botan.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wrap/python/python_botan.h b/src/wrap/python/python_botan.h
index a7a2e505e..ac0a17d7f 100644
--- a/src/wrap/python/python_botan.h
+++ b/src/wrap/python/python_botan.h
@@ -24,7 +24,8 @@ class Bad_Size : public Exception
public:
Bad_Size(u32bit got, u32bit expected) :
Exception("Bad size detected in Python/C++ conversion layer: got " +
- to_string(got) + " bytes, expected " + to_string(expected))
+ std::to_string(got) + " bytes, expected " +
+ std::to_string(expected))
{}
};