Use size_t for String size types

This commit is contained in:
Phil Nash 2017-08-05 22:53:21 +01:00
parent cff3818e68
commit b3b29f4b4c
5 changed files with 15 additions and 8 deletions

View file

@ -9,6 +9,8 @@
#include "catch_stringref.h"
#include <cstddef>
namespace Catch {
class String;
@ -22,7 +24,7 @@ namespace Catch {
class StringBuilder {
friend class String;
public:
using size_type = unsigned long;
using size_type = size_t;
StringBuilder();
StringBuilder( size_type initialCapacity );