fix a PY_LONG_LONG straggler

This commit is contained in:
Benjamin Peterson 2016-09-08 09:25:03 -07:00
parent beb0f1d425
commit c235af47f1
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ union value {
long l; long l;
float f; float f;
double d; double d;
PY_LONG_LONG ll; long long ll;
long double D; long double D;
}; };