From 558050939f4caf2106fabba26d46a8d4e78ee8f6 Mon Sep 17 00:00:00 2001 From: Igor Canadi Date: Fri, 20 Jun 2014 12:02:37 +0200 Subject: [PATCH] Fix release compile --- utilities/document/json_document.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utilities/document/json_document.cc b/utilities/document/json_document.cc index 300b07cac..46da6f8ba 100644 --- a/utilities/document/json_document.cc +++ b/utilities/document/json_document.cc @@ -263,6 +263,8 @@ bool JSONDocument::operator==(const JSONDocument& rhs) const { default: assert(false); } + // it can't come to here, but we don't want the compiler to complain + return false; } JSONDocument::ItemsIteratorGenerator JSONDocument::Items() const {