From: Kentaro Hayashi Date: Mon, 21 Nov 2022 13:17:18 +0000 (+0900) Subject: Include necessary headers to ensure IS_BIG_ENDIAN is defined X-Git-Tag: archive/raspbian/0.1.97-3+rpi1^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=a13587fa18e882fce89d3fa2f071bbb2dcf7ca51;p=sentencepiece.git Include necessary headers to ensure IS_BIG_ENDIAN is defined normalizer.h uses IS_BIG_ENDIAN, which is defined in util.h. Include util.h here. Author: Steve Langasek Last-Update: 2022-08-27 Forwarded: no Bug-Debian: https://bugs.debian.org/1017360 Gbp-Pq: Name header-dependencies.patch --- diff --git a/src/normalizer.h b/src/normalizer.h index c79813c..37fdb8a 100644 --- a/src/normalizer.h +++ b/src/normalizer.h @@ -22,6 +22,7 @@ #include #include "common.h" +#include "util.h" #include "sentencepiece_model.pb.h" #include "sentencepiece_processor.h" #include "third_party/absl/strings/string_view.h"