n -> size

This commit is contained in:
Victor Zverovich 2014-10-30 07:10:43 -07:00
parent 5c4b6678e4
commit 5a5870d3ca

View File

@ -170,7 +170,7 @@ class BasicStringRef {
/**
Constructs a string reference object from a C string and a size.
*/
BasicStringRef(const Char *s, std::size_t n) : data_(s), size_(n) {}
BasicStringRef(const Char *s, std::size_t size) : data_(s), size_(size) {}
/**
Constructs a string reference object from a C string computing