mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
parser: require assign on type alias (#6477)
This commit is contained in:
@@ -13,7 +13,7 @@ pub const (
|
||||
|
||||
// Ref - https://docs.microsoft.com/en-us/windows/desktop/winprog/windows-data-types
|
||||
// A handle to an object.
|
||||
pub type HANDLE voidptr
|
||||
pub type HANDLE = voidptr
|
||||
|
||||
// win: FILETIME
|
||||
// https://docs.microsoft.com/en-us/windows/win32/api/minwinbase/ns-minwinbase-filetime
|
||||
@@ -335,7 +335,7 @@ pub:
|
||||
context_record &ContextRecord
|
||||
}
|
||||
|
||||
pub type VectoredExceptionHandler fn(&ExceptionPointers)u32
|
||||
pub type VectoredExceptionHandler = fn (&ExceptionPointers) u32
|
||||
|
||||
// This is defined in builtin because we use vectored exception handling
|
||||
// for our unhandled exception handler on windows
|
||||
|
||||
Reference in New Issue
Block a user