Fix "find_dummy" compile error if no lua feature selected

This commit is contained in:
Alex Orlenko 2022-03-01 19:59:42 +00:00
parent 10826a7e67
commit f52d106a82
No known key found for this signature in database
GPG Key ID: 4C150C250863B96D
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
use std::path::PathBuf;
pub fn probe_lua() -> PathBuf {
pub fn probe_lua() -> Option<PathBuf> {
unreachable!()
}