Compiler Warning (level 2) C4756
Visual Studio 2005
Error Message
overflow in constant arithmeticThe compiler generated an exception while doing constant arithmetic during compilation.
The following sample generates C4756:
// C4756.cpp
// compile with: /W2 /Od
int main()
{
float f = 1e100+1e100; // C4756
}