开发者

strange catch clause... C++

开发者 https://www.devze.com 2023-01-04 16:58 出处:网络
What is this catch clause?? STD_CATCH_ALL_with_kMETHODID(...) Its used in a python inter开发者_Python百科preter extension...It\'s a macro so you need to look in your headers. An IDE should be able

What is this catch clause??

STD_CATCH_ALL_with_kMETHODID(...)

Its used in a python inter开发者_Python百科preter extension...


It's a macro so you need to look in your headers. An IDE should be able to go to its definition or look at the after preprocesser expansion. -E command line option on gcc


How about right-click and select Go To Declaration (using Visual Studio). You may try Go To Definition as well. If you cannot find it, it means you need to include a header where this macro is defined.

0

精彩评论

暂无评论...
验证码 换一张
取 消