Просмотр исходного кода

Fix llama-android.cpp for error - "common/common.h not found" (#8145)

- 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"
Raj Hammeer Singh Hada 1 год назад
Родитель
Сommit
ac146628e4
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      examples/llama.android/llama/src/main/cpp/llama-android.cpp

+ 1 - 1
examples/llama.android/llama/src/main/cpp/llama-android.cpp

@@ -5,7 +5,7 @@
 #include <string>
 #include <unistd.h>
 #include "llama.h"
-#include "common/common.h"
+#include "common.h"
 
 // Write C++ code here.
 //