Skip to content

Commit

Permalink
fixed issue android#263:
Browse files Browse the repository at this point in the history
using standard C++ headers, instead of c headers to fix PRIu64 issue
  • Loading branch information
ggfan committed Jul 22, 2016
1 parent 253f127 commit c3dfab5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hello-libs/app/src/main/cpp/hello-libs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
* limitations under the License.
*
*/
#include <string.h>
#include <cstring>
#include <jni.h>
#include <inttypes.h>
#include <cinttypes>
#include <android/log.h>
#include <gmath.h>
#include <gperf.h>
Expand Down

0 comments on commit c3dfab5

Please sign in to comment.