Skip to content

Commit a3b9f8b

Browse files
changed generation from integeger to string (#43)
1 parent c70c09e commit a3b9f8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/multio/action/encode/GribEncoder.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ QueriedMarsKeys setMarsKeys(GribEncoder& g, const Dict& md) {
403403
withFirstOf(valueSetter(g, glossary().experiment),
404404
lookUp<std::string>(md, glossary().experiment));
405405
withFirstOf(valueSetter(g, glossary().generation),
406-
lookUp<std::int64_t>(md, glossary().generation));
406+
lookUp<std::string>(md, glossary().generation));
407407
withFirstOf(valueSetter(g, glossary().model), lookUp<std::string>(md, glossary().model));
408408
withFirstOf(valueSetter(g, glossary().realization),
409409
lookUp<std::string>(md, glossary().realization));

0 commit comments

Comments
 (0)