diff options
author | lloyd <[email protected]> | 2010-10-15 13:25:35 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-10-15 13:25:35 +0000 |
commit | 74fe6649c298e34beeacc190f0d557e5421fe79e (patch) | |
tree | db028622d73cdfc3f8ea168e344f52cd7435a55d /src/constructs | |
parent | 8f90feb2418bd54b4f818ca6e9303c4562abf88d (diff) |
More size_t
Diffstat (limited to 'src/constructs')
-rw-r--r-- | src/constructs/tss/tss.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/constructs/tss/tss.h b/src/constructs/tss/tss.h index 485e42c53..297c65971 100644 --- a/src/constructs/tss/tss.h +++ b/src/constructs/tss/tss.h @@ -61,7 +61,7 @@ class BOTAN_DLL RTSS_Share /** * @return size of this share in bytes */ - u32bit size() const { return contents.size(); } + size_t size() const { return contents.size(); } /** * @return if this TSS share was initialized or not |