Skip to content
Snippets Groups Projects
Commit 36072904 authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

iterator_grib.h: fixed gcc warning: redefinition of typedef 'CdiGribIterator'

parent 2f5b50d1
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@
#endif
typedef struct recordList recordList;
typedef struct CdiGribIterator {
struct CdiGribIterator {
CdiIterator super;
CdiInputFile* file;
......@@ -27,7 +27,7 @@ typedef struct CdiGribIterator {
#else
void* gribHandle;
#endif
} CdiGribIterator;
};
CdiIterator* cdiGribIterator_new(const char* path, int filetype);
CdiGribIterator* cdiGribIterator_makeClone(CdiIterator* me);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment