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

vcl: work around missing std::fmax() on Android

Change-Id: Iaa4e6aa84c163f2ec5541f233cf7593c0a501b5e
üst 90646b49
......@@ -44,6 +44,16 @@
#include <cairo-ft.h>
#include "CommonSalLayout.hxx"
#ifdef ANDROID
namespace std
{
double fmax(double x, double y)
{
return ::fmax(x, y);
}
}
#endif
namespace {
typedef struct FT_FaceRec_* FT_Face;
......
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