mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
v.vcache: another workaround for a tcc arm64 runtime bug
This commit is contained in:
parent
0cb0b0f9c6
commit
a747651f18
@ -90,7 +90,9 @@ pub fn (mut cm CacheManager) key2cpath(key string) string {
|
||||
}
|
||||
|
||||
pub fn (mut cm CacheManager) postfix_with_key2cpath(postfix string, key string) string {
|
||||
return cm.key2cpath(key) + postfix
|
||||
prefix := cm.key2cpath(key)
|
||||
res := prefix + postfix
|
||||
return res
|
||||
}
|
||||
|
||||
pub fn (mut cm CacheManager) exists(postfix string, key string) ?string {
|
||||
|
Loading…
Reference in New Issue
Block a user