| T O P I C    R E V I E W | 
              
                | DrunkGoblin | Posted - May 11 2010 : 12:16:41 PM Using 10.6.1822 on VS2010.
 In this code snippet:
 
 struct Test
 {
 int someint;
 int someotherint;
 };
 
 #define MACRO_TEST(a)  \   someint = a;        \   someotherint = a;
 
 #define MACRO_TEST2(b) \   someint = a;
 
 void main()
 {
 Test t;
 t.someint = 10;
 }
 
 Find References and Rename both include the variables used in macros in their list when searching for a respective struct member variable. Is this by design?
 | 
              
                | 2   L A T E S T    R E P L I E S    (Newest First) | 
              
                | support | Posted - Feb 25 2013 : 12:18:43 PM case=9860 is fixed in build 1929
 | 
              
                | accord | Posted - May 12 2010 : 2:13:42 PM There is a change request to use question mark icon for references in defines and to not tick these references by default in rename dialog:
 
 case=9860
 |