Commit 5a5870d3 authored by Victor Zverovich's avatar Victor Zverovich

n -> size

parent 5c4b6678
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment