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:
parent
9afb008c10
commit
7911e709c0
1 changed files with 2 additions and 3 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue