नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'token' :non-constant expression in 'context'
Remarks
The token forms part of a non-constant expression in this context.
To fix this issue, replace the token with a constant literal or with a calculation.
Example
The following example generates C2425:
// C2425.cpp
// processor: x86
int main() {
int i = 3;
__asm {
mov eax, [ebp - i] // C2425
mov eax, [ebp - 3] // OK
}
}