Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-core-dev] expanding macro definitions in functions

My failure is around our use of a macro (COMMA_MY_DEC) in our functions /
function decelerations.

COMMA_MY_DEC = ", _MY_DEC"

The problem I see is the IDE needs to see the "," that is hidden in the
macro. Is there any way to have the IDE do expansion of the macro? Around
80% of our code uses this method. The resulting problem is that the
functions are not recognized by the indexer and do not show up in the C/C++
index. Also folding does not recognize the functions.


Char my_impl::GetInfo(
   int applicationValue,
   const myConst1,
   const myConst2
   COMMA_MY_DEC )            << Can this be expanded?


Thanks   Mark

-- 
View this message in context: http://www.nabble.com/expanding-macro-definitions-in-functions-tp17989102p17989102.html
Sent from the Eclipse CDT - core mailing list archive at Nabble.com.



Back to the top