Skip to content

Commit

Permalink
fix building errors
Browse files Browse the repository at this point in the history
  • Loading branch information
csukuangfj committed Dec 20, 2024
1 parent 68d7a92 commit 779343c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions scripts/bbpe/generate_bbpe_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ def main():
s += "\n"
s += '#include "sherpa-onnx/csrc/bbpe.h"\n'
s += "\n"
s += "#include <cstdint>\n"
s += "#include <string>\n"
s += "#include <unordered_map>\n"
s += "\n"
Expand Down
1 change: 1 addition & 0 deletions sherpa-onnx/csrc/bbpe.cc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

#include "sherpa-onnx/csrc/bbpe.h"

#include <cstdint>
#include <string>
#include <unordered_map>

Expand Down
1 change: 1 addition & 0 deletions sherpa-onnx/csrc/bbpe.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

#ifndef SHERPA_ONNX_CSRC_BBPE_H_
#define SHERPA_ONNX_CSRC_BBPE_H_
#include <cstdint>
#include <string>
#include <unordered_map>

Expand Down

0 comments on commit 779343c

Please sign in to comment.