Skip to content

Commit

Permalink
Per #2841, correct the location of using namespace lines.
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnHalleyGotway committed Jun 21, 2024
1 parent 419c6ef commit 42d6b4d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/libcode/vx_grid/tcrmw_grid.cc
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
////////////////////////////////////////////////////////////////////////


using namespace std;

#include <iostream>
#include <unistd.h>
#include <stdlib.h>
Expand All @@ -21,6 +19,8 @@ using namespace std;

#include "trig.h"

using namespace std;


////////////////////////////////////////////////////////////////////////

Expand Down
6 changes: 3 additions & 3 deletions src/libcode/vx_tc_util/vx_tc_nc_util.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@

////////////////////////////////////////////////////////////////////////

using namespace std;

#include<netcdf>
using namespace netCDF;

#include "vx_tc_nc_util.h"

using namespace std;
using namespace netCDF;

////////////////////////////////////////////////////////////////////////

void write_tc_track_lines(NcFile* nc_out,
Expand Down

0 comments on commit 42d6b4d

Please sign in to comment.