Merge pull request #1364 from pdaehne/master

X3D importer: Workaround for buggy Android NDK (issue #1361)
pull/1370/head
Kim Kulling 2017-07-29 15:07:38 +02:00 committed by GitHub
commit efa0aaf729
1 changed files with 6 additions and 0 deletions

View File

@ -45,6 +45,12 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef ASSIMP_BUILD_NO_X3D_IMPORTER
// Workaround for issue #1361
// https://github.com/assimp/assimp/issues/1361
#ifdef __ANDROID__
#define _GLIBCXX_USE_C99 1
#endif
#include "FIReader.hpp"
#include "Exceptional.h"
#include <assimp/IOStream.hpp>