1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

os: remove pub from impl_walk_ext

This commit is contained in:
Delyan Angelov 2021-10-24 18:48:54 +03:00
parent d1c4b470bc
commit e34046a0e1
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -454,7 +454,7 @@ pub fn walk_ext(path string, ext string) []string {
return res
}
pub fn impl_walk_ext(path string, ext string, mut out []string) {
fn impl_walk_ext(path string, ext string, mut out []string) {
if !is_dir(path) {
return
}