Skip to content

Commit e13c8c0

Browse files
authored
Fix indent
1 parent 0e4c8aa commit e13c8c0

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

docs/debugger/debug-interface-access/idiasession-findlinesbylinenum.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ Determines the line numbers of the compiland that the specified line number in a
2020

2121
```C++
2222
HRESULT findLinesByLinenum
23-
IDiaSymbol* compiland,
24-
IDiaSourceFile* file,
25-
DWORD linenum,
26-
DWORD column,
27-
IDiaEnumLineNumbers** ppResult
23+
IDiaSymbol* compiland,
24+
IDiaSourceFile* file,
25+
DWORD linenum,
26+
DWORD column,
27+
IDiaEnumLineNumbers** ppResult
2828
);
2929
```
3030

@@ -78,11 +78,11 @@ void ShowLinesInCompilands(IDiaSession *pSession, LPCOLESTR filename)
7878
DWORD lineCount;
7979
while ( pEnum->Next(1,&pLineNumber,&lineCount) == S_OK)
8080
{
81-
DWORD lineNum;
82-
if (pLineNumber->get_line(&lineNum) == S_OK)
83-
{
84-
printf("compiland starts in source at line number = %lu\n",lineNum);
85-
}
81+
DWORD lineNum;
82+
if (pLineNumber->get_line(&lineNum) == S_OK)
83+
{
84+
printf("compiland starts in source at line number = %lu\n",lineNum);
85+
}
8686
}
8787
}
8888
}

0 commit comments

Comments
 (0)