mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
vfmt: change all '$expr' to '${expr}' (#16428)
This commit is contained in:
parent
56239b4a23
commit
017ace6ea7
859 changed files with 7156 additions and 7135 deletions
|
@ -23,7 +23,7 @@ pub fn get_shared_library_extension() string {
|
|||
// shared libraries.
|
||||
[inline]
|
||||
pub fn get_libname(libname string) string {
|
||||
return '$libname$dl.dl_ext'
|
||||
return '${libname}${dl.dl_ext}'
|
||||
}
|
||||
|
||||
// open_opt - loads the dynamic shared object.
|
||||
|
|
|
@ -34,5 +34,5 @@ pub fn dlerror() string {
|
|||
// https://docs.microsoft.com/en-us/windows/win32/api/errhandlingapi/nf-errhandlingapi-getlasterror
|
||||
// Unlike dlerror(), GetLastError returns just an error code, that is function specific.
|
||||
cerr := int(C.GetLastError())
|
||||
return 'error code $cerr'
|
||||
return 'error code ${cerr}'
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue