ソースを参照

added import in order for alloca to work on macos (#1710)

pull/1711/head
Saikyun 4年前
committed by GitHub
コミット
fd663024ea
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      src/external/stb_vorbis.h

+ 1
- 1
src/external/stb_vorbis.h ファイルの表示

@ -570,7 +570,7 @@ enum STBVorbisError
#if defined(_MSC_VER) || defined(__MINGW32__)
#include <malloc.h>
#endif
#if defined(__linux__) || defined(__linux) || defined(__EMSCRIPTEN__)
#if defined(__linux__) || defined(__linux) || defined(__EMSCRIPTEN__) || defined(__APPLE__)
#include <alloca.h>
#endif
#else // STB_VORBIS_NO_CRT

読み込み中…
キャンセル
保存