From 9b619782a07a72ddf5d2b0d60c7b44e9e3e9a985 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Wed, 4 Sep 2013 22:10:58 -0700 Subject: [PATCH] Fix the build. --- format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/format.h b/format.h index d32ea51b..a3088ab5 100644 --- a/format.h +++ b/format.h @@ -1123,7 +1123,7 @@ class BasicFormatter { } // Constructs a formatter from a proxy object. - BasicFormatter(const Proxy &p) : BasicFormatter(*p.writer, p.format) {} + BasicFormatter(const Proxy &p) : writer_(p.writer), format_(p.format) {} operator Proxy() { const Char *format = format_;