You must be registered to post a reply. Click here to register.
T O P I C R E V I E W
lance
Posted - Feb 20 2009 : 11:40:59 AM find references of a template doesn't work in following situation: namespace LSP{ int MyMacroMethod(int a); } #define MyMacro(a) MyMacroMethod(a)
--- a.cpp namespace LSP { int blah = MyMacro(a); /// this is found
int blah2 = LSP::MyMacro(a); /// this is NOT found }
1 L A T E S T R E P L I E S (Newest First)
accord
Posted - Feb 20 2009 : 5:27:51 PM I am seeing the same effect here. Thank you for the clear description.