l10ntools: suppress warning C4245 from boost/crc.hpp

Change-Id: I2ed53b4f902ae694fc064375e8a9cfeba32f9d1c
This commit is contained in:
Michael Stahl
2014-08-13 16:14:58 +02:00
parent 0201156f93
commit 1cf299efcc

View File

@@ -16,7 +16,15 @@
#include <vector>
#include <string>
#ifdef _MSC_VER
#pragma warning (push, 1)
#pragma warning (disable: 4245)
#endif
#include <boost/crc.hpp>
#ifdef _MSC_VER
#pragma warning (pop)
#endif
#include "po.hxx"
#include "helper.hxx"