Skip to content

Commit

Permalink
OGRFieldType: be explicit about signedness of OFTInteger/OTInteger64
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Oct 7, 2024
1 parent 37fec09 commit 46ad0f1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ogr/ogr_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -791,8 +791,8 @@ typedef enum

typedef enum
{
/** Simple 32bit integer */ OFTInteger = 0,
/** List of 32bit integers */ OFTIntegerList = 1,
/** Single signed 32bit integer */ OFTInteger = 0,
/** List of signed 32bit integers */ OFTIntegerList = 1,
/** Double Precision floating point */ OFTReal = 2,
/** List of doubles */ OFTRealList = 3,
/** String of ASCII chars */ OFTString = 4,
Expand All @@ -803,8 +803,8 @@ typedef enum
/** Date */ OFTDate = 9,
/** Time */ OFTTime = 10,
/** Date and Time */ OFTDateTime = 11,
/** Single 64bit integer */ OFTInteger64 = 12,
/** List of 64bit integers */ OFTInteger64List = 13,
/** Single signed 64bit integer */ OFTInteger64 = 12,
/** List of signed 64bit integers */ OFTInteger64List = 13,
OFTMaxType = 13
} OGRFieldType;

Expand Down

0 comments on commit 46ad0f1

Please sign in to comment.