diff options
| author | Thomas Knudsen <busstoptaktik@users.noreply.github.com> | 2018-03-06 12:47:30 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-06 12:47:30 +0100 |
| commit | 20e5610911a6d6231121eb3c0d3c38330f8d708e (patch) | |
| tree | 5b82c4fc3316e53c7bdb9d21b26527f27b76ba56 /src | |
| parent | f8981aed312113bf12d6426711b41f3c63137fa3 (diff) | |
| download | PROJ-20e5610911a6d6231121eb3c0d3c38330f8d708e.tar.gz PROJ-20e5610911a6d6231121eb3c0d3c38330f8d708e.zip | |
Remove angle brackets in include proj.h
The #include <proj.h> in proj_internal.h has been changed to #include "proj.h" in order to avoid accidentally including an old installed proj.h file while building a new version of libproj.
Diffstat (limited to 'src')
| -rw-r--r-- | src/proj_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proj_internal.h b/src/proj_internal.h index 071510c7..020d0486 100644 --- a/src/proj_internal.h +++ b/src/proj_internal.h @@ -33,7 +33,7 @@ #endif #include <math.h> /* For M_PI */ -#include <proj.h> +#include "proj.h" #ifdef PROJECTS_H #error proj_internal.h must be included before projects.h |
