Kaydet (Commit) 0cb7d76b authored tarafından Miklos Vajna's avatar Miklos Vajna

writerfilter: fix Android build

lround() is missing in the std namespace on the broken Android toolchain, work
it around.

Change-Id: Ib53ace52c3a7c345de1326e3566a279f2a3f1bce
üst 69fb6a30
......@@ -41,6 +41,17 @@
using namespace com::sun::star;
#if defined(ANDROID)
namespace std
{
template<typename T>
T lround(T x)
{
return ::lround(x);
}
}
#endif
namespace writerfilter
{
namespace rtftok
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment