Commit f5a9a25
committed
fix(omnivoice-codec): make main_impl static to satisfy -Wmissing-declarations
`int main_impl(int, char**)` in tools/omnivoice/tools/omnivoice-codec.cpp
had no prior declaration. Under `-DLLAMA_FATAL_WARNINGS=ON` (CI
3rd-party / ubuntu-24-llguidance) this fails:
tools/omnivoice/tools/omnivoice-codec.cpp:158:5:
error: no previous declaration for 'int main_impl(int, char**)'
[-Werror=missing-declarations]
The sibling tool tools/omnivoice/tools/omnivoice-tts.cpp already marks
its main_impl static (line 411). Match it.1 parent 1ee2328 commit f5a9a25
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
155 | 155 | | |
156 | 156 | | |
157 | 157 | | |
158 | | - | |
| 158 | + | |
159 | 159 | | |
160 | 160 | | |
161 | 161 | | |
| |||
0 commit comments