aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorKristian Evers <kristianevers@gmail.com>2020-11-01 13:34:32 +0100
committerKristian Evers <kristianevers@gmail.com>2020-11-20 16:40:39 +0100
commit9419b42ade1f1d35a61c05f0f7ce9aab2eeff3c7 (patch)
treea35e99c8a19a4a8863e710833bd4dc5b466edd3e /test
parent4478eed4f5fe9d33fe7ef34126f98d3f7aa2daa5 (diff)
downloadPROJ-9419b42ade1f1d35a61c05f0f7ce9aab2eeff3c7.tar.gz
PROJ-9419b42ade1f1d35a61c05f0f7ce9aab2eeff3c7.zip
Remove proj_api.h
Removes proj_api.h from the public API. The contents of the header file has been moved to proj_internal.h verbatim and any references to proj_api.h has been changed to proj_internal.h. The documentation of proj_api.h has been removed. The only exception to this is the API migration guides which still mention the old API. Fixes #837
Diffstat (limited to 'test')
-rw-r--r--test/fuzzers/standard_fuzzer.cpp2
-rw-r--r--test/unit/pj_transform_test.cpp1
2 files changed, 1 insertions, 2 deletions
diff --git a/test/fuzzers/standard_fuzzer.cpp b/test/fuzzers/standard_fuzzer.cpp
index 468e8cbb..552ac781 100644
--- a/test/fuzzers/standard_fuzzer.cpp
+++ b/test/fuzzers/standard_fuzzer.cpp
@@ -36,7 +36,7 @@
#define ACCEPT_USE_OF_DEPRECATED_PROJ_API_H
#include "proj.h"
-#include "proj_api.h"
+#include "proj_internal.h"
/* Standalone build:
g++ -g -std=c++11 standard_fuzzer.cpp -o standard_fuzzer -fvisibility=hidden -DSTANDALONE ../../src/.libs/libproj.a -lpthread -lsqlite3 -I../../src -I../../include
diff --git a/test/unit/pj_transform_test.cpp b/test/unit/pj_transform_test.cpp
index ddb054f0..5f390541 100644
--- a/test/unit/pj_transform_test.cpp
+++ b/test/unit/pj_transform_test.cpp
@@ -35,7 +35,6 @@
// clang-format off
#include <proj.h>
#include "proj_internal.h"
-#include <proj_api.h>
// clang-format on
namespace {