diff options
author | lloyd <[email protected]> | 2010-10-13 02:20:49 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-10-13 02:20:49 +0000 |
commit | c00da53d958ef8c266012ae9425337143f14f46e (patch) | |
tree | 144932858569f60d1fbfe2f079638819a123accb /src/utils/parsing.h | |
parent | fe4119c74b5e81a354a5313e4d2efbf9a135aa81 (diff) |
s/u32bit/size_t/ in utils
Diffstat (limited to 'src/utils/parsing.h')
-rw-r--r-- | src/utils/parsing.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/parsing.h b/src/utils/parsing.h index cafdd146b..12370bf2b 100644 --- a/src/utils/parsing.h +++ b/src/utils/parsing.h @@ -53,7 +53,7 @@ BOTAN_DLL bool x500_name_cmp(const std::string& name1, * @param min_len the min length of the output string * @return n convert to a string */ -BOTAN_DLL std::string to_string(u64bit n, u32bit min_len= 0); +BOTAN_DLL std::string to_string(u64bit n, size_t min_len = 0); /** * Convert a string to a number |