Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature 2615 main v11.1 gcc12 #2617

Merged
merged 1 commit into from
Jul 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/tools/other/pb2nc/pb2nc.cc
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,10 @@
// 015 02/10/18 Halley Gotway Add message_type_group_map.
// 016 07/23/18 Halley Gotway Support masks defined by gen_vx_mask.
// 017 07/06/22 Howard Soh METplus-Internal #19 Rename main to met_main
// 018 09/12/22 Prestopnik MET #2227 Remove namespace std and netCDF
// 018 09/12/22 Prestopnik, J. MET #2227 Remove namespace std and netCDF
// from header files
//
// 019 07/21/23 Prestopnik, J. MET #2615 Add #include <array> to compile
// successfully using gcc12
////////////////////////////////////////////////////////////////////////


Expand All @@ -72,6 +73,7 @@
#include <unistd.h>
#include <assert.h>

#include <array>
#include <netcdf>

#include "main.h"
Expand Down