Click here to Skip to main content
15,911,531 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
HI,

I am migratting project from VC6.0 to VS 2010.i got error as
error C2784: 'char (*__countof_helper(_CountofType (&)[_SizeOfArray]))[_SizeOfArray]' : could not deduce template argument for '_CountofType (&)[_SizeOfArray]' from 'long [][2][2]'

code snippet
C++
for (int i=0; i<_countof(aPartID); i++)
        for (int j=0; j<_countof(aPartID); j++)
            for (int k=0; k<_countof(aPartID); k++)

help me in this regard

Thanks inadvance

Praveena
Posted
Updated 28-Sep-12 1:39am
v2
Comments
CPallini 28-Sep-12 7:43am    
How is aPartID defined?
Malli_S 28-Sep-12 7:46am    
Is 'aPartID' a pointer variable ?

1 solution

It looks like the array you are referencing has a null dimension so _countof has no way of counting how many bytes it will occupy.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900