resharper-c++

Resharper : subtituate macro with multi-line code

心已入冬 提交于 2019-12-25 09:45:10
问题 Is it possible to make Resharper Substituate macro call in separate-lines mode? Example I have this code :- #define TEST(T) int T=5; \ T++; TEST(apple); If I click Substituate macro call and all nested calls like this :- The line TEST(apple); will become :- int apple=5; apple++;; I hope there is an option to make the result be 2 separate lines :- int apple=5; apple++;; Other notes I know that macro with \ is finally interpreted as a single line, but it would be nice if there is an option to