Skip to content

Commit

Permalink
Fix llama-android.cpp for error - "common/common.h not found" (#8145)
Browse files Browse the repository at this point in the history
- Path seems to be wrong for the common.h header file in llama-android.cpp file. Fixing the path so the Android Build doesn't fail with the error "There is no file common/common.h"
  • Loading branch information
criminact authored Jun 27, 2024
1 parent 9b31a40 commit ac14662
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include <string>
#include <unistd.h>
#include "llama.h"
#include "common/common.h"
#include "common.h"

// Write C++ code here.
//
Expand Down

0 comments on commit ac14662

Please sign in to comment.