Merge pull request #566 from ethereum/msvc2015

Suppress a warning in LLL parser on MSVC 2015
This commit is contained in:
Paweł Bylica 2016-05-17 14:27:39 +02:00
commit 77f3a85441

View File

@ -21,6 +21,10 @@
#include "Parser.h"
#if _MSC_VER
#pragma warning(disable:4348)
#endif
#define BOOST_RESULT_OF_USE_DECLTYPE
#define BOOST_SPIRIT_USE_PHOENIX_V3
#include <boost/spirit/include/qi.hpp>