sahrk / DGGRID

A command-line application that generates and manipulates icosahedral discrete global grids.
GNU Affero General Public License v3.0
78 stars 26 forks source link

Fix header include in DgEllipsoidRF #52

Closed r-barnes closed 2 years ago

r-barnes commented 2 years ago

This changes

#include "dglib/DgBase.h"

to

#include <dglib/DgBase.h>

so that things compile nicely.

The line #include <dglib/DgBase.h> appears just below a place where it looks like two files have been pasted into each other - was this intentional?

All other changes are removing trailing whitespace; code editors can usually be configured to do this automatically.

r-barnes commented 2 years ago

@sahrk : Could you check on this?