1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-08 03:27:04 +09:00

Do not separate header comments from function definitions (#105754)

* Do not separate header comments from function definitions

Separating them with a space defeats a VS feature that shows
the header comments when you hover over a function in code.

* Remove // static as well
This commit is contained in:
SingleAccretion 2024-07-31 20:52:37 +03:00 committed by GitHub
parent 9afb008c10
commit 7911e709c0
Signed by: github
GPG key ID: B5690EEEBB952194

View file

@ -777,7 +777,7 @@ If you can formulate any assumptions as asserts in the code itself, you should d
// More detailed notes about the function.
// What errors can the function return?
// What other methods are related or alternatives to be considered?
//
<function definition>
```
@ -805,8 +805,7 @@ The following is a sample of a completed function definition:
// Notes:
// Call-site signature blobs include ELEMENT_TYPE_SENTINEL.
// This method does not check for the presence of the sentinel.
// static
//
BOOL MetaSig::IsVarArg(Module* pModule,
PCCOR_SIGNATURE pSig)
{