mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
parser: do not allow calling private functions
This commit is contained in:
@ -12,7 +12,7 @@ const (
|
||||
max_u64 = u64(C.UINT64_MAX)// as u64 // use this until we add support
|
||||
)
|
||||
|
||||
fn byte_to_lower(c byte) byte {
|
||||
pub fn byte_to_lower(c byte) byte {
|
||||
return c | (`x` - `X`)
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user