From c49d83172f198029da2074cbdfb70ac285294cc5 Mon Sep 17 00:00:00 2001
From: Alexandre Hamez <alexandre.hamez@gmail.com>
Date: Mon, 8 Jun 2015 11:38:52 +0200
Subject: [PATCH] Avoid warning with Xcode's clang

---
 src/json.hpp.re2c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/json.hpp.re2c b/src/json.hpp.re2c
index 45979a57..02cb2855 100644
--- a/src/json.hpp.re2c
+++ b/src/json.hpp.re2c
@@ -1983,7 +1983,7 @@ class basic_json
         o.width(0);
 
         // do the actual serialization
-        j.dump(o, prettyPrint, indentation);
+        j.dump(o, prettyPrint, static_cast<int>(indentation));
         return o;
     }