Kaydet (Commit) 687af0d8 authored tarafından Brett Cannon's avatar Brett Cannon

Remove unnecessary curly braces around an int literal.

üst a6c41bc9
...@@ -44,11 +44,11 @@ ...@@ -44,11 +44,11 @@
I do know about <values.h>, but the whole point of this file is that I do know about <values.h>, but the whole point of this file is that
we can't always trust that stuff to be there or to be correct. we can't always trust that stuff to be there or to be correct.
*/ */
static int MDMINEXPT = {-323}; static int MDMINEXPT = -323;
static char MDMINFRAC[] = "494065645841246544"; static char MDMINFRAC[] = "494065645841246544";
static double ZERO = 0.0; static double ZERO = 0.0;
static int MDMAXEXPT = { 309}; static int MDMAXEXPT = 309;
static char MDMAXFRAC[] = "17976931348623157"; static char MDMAXFRAC[] = "17976931348623157";
static double HUGE = 1.7976931348623157e308; static double HUGE = 1.7976931348623157e308;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment