From 39816eca580b98c9b5cb0c5784f636f435129b67 Mon Sep 17 00:00:00 2001 From: StanislavGlebik Date: Sun, 11 Jan 2015 14:04:30 +0300 Subject: [PATCH] Added #include Summary: Added necessary #include (FbsonJsonParser.h won't compile if it will be used separately). The reason why tests have passed fine is because gtest/gtest.h contains #include This is from the following github pull request: https://github.com/facebook/mysql-5.6/pull/12 Test Plan: jenkins Reviewers: steaphan Reviewed By: steaphan --- fbson/FbsonJsonParser.h | 1 + 1 file changed, 1 insertion(+) diff --git a/fbson/FbsonJsonParser.h b/fbson/FbsonJsonParser.h index 5c07ce7a18e7..8d9e447053b1 100644 --- a/fbson/FbsonJsonParser.h +++ b/fbson/FbsonJsonParser.h @@ -56,6 +56,7 @@ #define FBSON_FBSONPARSER_H #include +#include #include "FbsonDocument.h" #include "FbsonWriter.h"