mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
[EXT2]
try_return() == try_return(S) with nothing in S . The code sometimes use it. Shut up MSVC warning C4003: not enough actual parameters for macro 'try_return'. svn path=/trunk/; revision=62562
This commit is contained in:
parent
f329138f57
commit
fe4af53ff0
1 changed files with 1 additions and 0 deletions
|
@ -60,6 +60,7 @@ typedef unsigned char BYTE;
|
|||
extern Ext2Data Ext2GlobalData;
|
||||
|
||||
// try-finally simulation
|
||||
#define try_return() { goto try_exit; }
|
||||
#define try_return(S) { S; goto try_exit; }
|
||||
#define try_return1(S) { S; goto try_exit1; }
|
||||
#define try_return2(S) { S; goto try_exit2; }
|
||||
|
|
Loading…
Reference in a new issue