From 5a5870d3ca8f830e9a02cdcbe0bd486501e4974e Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Thu, 30 Oct 2014 07:10:43 -0700 Subject: [PATCH] n -> size --- format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/format.h b/format.h index 0c4c63da..3a2a0439 100644 --- a/format.h +++ b/format.h @@ -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