Parcourir la source

build: work around a bug in the NaCl SDK C++ headers.

legacy
Sam Hocevar sam il y a 11 ans
Parent
révision
f2560ff5b8
1 fichiers modifiés avec 7 ajouts et 0 suppressions
  1. +7
    -0
      src/core.h

+ 7
- 0
src/core.h Voir le fichier

@@ -78,6 +78,13 @@ static inline int isnan(float f)
}
#endif


/* XXX: workaround for a compilation bug in NaCl headers */
#if defined __native_client__
# define typeid(x) (*(type_info*)nullptr)
#endif


/* External declaration for LolFx files. */
#define LOLFX_RESOURCE_DECLARE(name) \
extern "C" char const *LOLFX_RESOURCE_NAME(name)


Chargement…
Annuler
Enregistrer