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:
Hermès Bélusca-Maïto 2014-03-24 22:20:52 +00:00
parent f329138f57
commit fe4af53ff0

View file

@ -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; }