Skip to content
This repository was archived by the owner on Feb 8, 2024. It is now read-only.

Commit dcece0b

Browse files
committed
fixed typo and spaces
1 parent fd8ed27 commit dcece0b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/ldc/eh/win32.d

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ nothrow:
278278

279279
@property size_t length() const { return _length; }
280280
@property bool empty() const { return !length; }
281-
281+
282282
private:
283283
void grow()
284284
{
@@ -395,7 +395,7 @@ enum EXCEPTION_DISPOSITION
395395
ExceptionCollidedUnwind
396396
}
397397

398-
// @safeseh to be marked as "safe" for the OS securtity check
398+
// @safeseh to be marked as "safe" for the OS security check
399399
extern(C) @safeseh()
400400
EXCEPTION_DISPOSITION _d_unwindExceptionHandler(ExceptionRecord* exceptionRecord,
401401
FrameInfo* frame,
@@ -423,10 +423,10 @@ EXCEPTION_DISPOSITION _d_unwindExceptionHandler(ExceptionRecord* exceptionRecord
423423
}
424424

425425
extern(Windows)
426-
void RtlUnwind(void *targetFrame, void *targetIp, ExceptionRecord *pExceptRec, void *valueForEAX);
426+
void RtlUnwind(void* targetFrame, void* targetIp, ExceptionRecord* pExceptRec, void* valueForEAX);
427427

428428
extern(C)
429-
int doRtlUnwind(void *pFrame, ExceptionRecord *eRecord, typeof(RtlUnwind)* handler)
429+
int doRtlUnwind(void* pFrame, ExceptionRecord* eRecord, typeof(RtlUnwind)* handler)
430430
{
431431
asm {
432432
naked;
@@ -458,7 +458,7 @@ int doRtlUnwind(void *pFrame, ExceptionRecord *eRecord, typeof(RtlUnwind)* handl
458458
ret;
459459
}
460460
}
461-
461+
462462
///////////////////////////////////////////////////////////////
463463
void msvc_eh_init()
464464
{

0 commit comments

Comments
 (0)