Skip to content

Commit

Permalink
Fix FLAC extension native part compilation
Browse files Browse the repository at this point in the history
In the latest NDK version (r15) compilation fails because 'memset' isn't defined. Included cstring header.

Issue: #2977

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=160139022
  • Loading branch information
erdemguven authored and ojw28 committed Jun 26, 2017
1 parent acbddbc commit a7ed199
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions extensions/flac/src/main/jni/flac_parser.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

#include <cassert>
#include <cstdlib>
#include <cstring>

#define LOG_TAG "FLACParser"
#define ALOGE(...) \
Expand Down

0 comments on commit a7ed199

Please sign in to comment.