Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacbrodsky committed May 22, 2024
1 parent df846c5 commit 4a35a37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/h3_regions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ static void PolygonWktToCellsFunction(DataChunk &args, ExpressionState &state,
strIndex = whitespace(str, strIndex);

duckdb::shared_ptr<std::vector<LatLng>> outerVerts =
duckdb::make_shared<std::vector<LatLng>>();
duckdb::make_shared_ptr<std::vector<LatLng>>();

Check failure on line 223 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / DuckDB-Wasm (wasm_threads, wasm32-emscripten)

no template named 'make_shared_ptr' in namespace 'duckdb'; did you mean 'make_shared'?

Check failure on line 223 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / DuckDB-Wasm (wasm_threads, wasm32-emscripten)

no template named 'make_shared_ptr' in namespace 'duckdb'; did you mean 'make_shared'?

Check failure on line 223 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / DuckDB-Wasm (wasm_mvp, wasm32-emscripten)

no template named 'make_shared_ptr' in namespace 'duckdb'; did you mean 'make_shared'?

Check failure on line 223 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / DuckDB-Wasm (wasm_mvp, wasm32-emscripten)

no template named 'make_shared_ptr' in namespace 'duckdb'; did you mean 'make_shared'?

Check failure on line 223 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / DuckDB-Wasm (wasm_eh, wasm32-emscripten)

no template named 'make_shared_ptr' in namespace 'duckdb'; did you mean 'make_shared'?

Check failure on line 223 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / DuckDB-Wasm (wasm_eh, wasm32-emscripten)

no template named 'make_shared_ptr' in namespace 'duckdb'; did you mean 'make_shared'?

Check failure on line 223 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / DuckDB-Wasm (wasm_threads, wasm32-emscripten)

no template named 'make_shared_ptr' in namespace 'duckdb'; did you mean 'make_shared'?

Check failure on line 223 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / DuckDB-Wasm (wasm_threads, wasm32-emscripten)

no template named 'make_shared_ptr' in namespace 'duckdb'; did you mean 'make_shared'?

Check failure on line 223 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / DuckDB-Wasm (wasm_mvp, wasm32-emscripten)

no template named 'make_shared_ptr' in namespace 'duckdb'; did you mean 'make_shared'?

Check failure on line 223 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / DuckDB-Wasm (wasm_mvp, wasm32-emscripten)

no template named 'make_shared_ptr' in namespace 'duckdb'; did you mean 'make_shared'?

Check failure on line 223 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / MacOS (osx_arm64, arm64, arm64-osx)

no template named 'make_shared_ptr' in namespace 'duckdb'; did you mean 'make_shared'?

Check failure on line 223 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / MacOS (osx_amd64, x86_64, x64-osx)

no template named 'make_shared_ptr' in namespace 'duckdb'; did you mean 'make_shared'?

Check failure on line 223 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / Linux (linux_amd64_gcc4, quay.io/pypa/manylinux2014_x86_64, x64-linux)

‘make_shared_ptr’ is not a member of ‘duckdb’

Check failure on line 223 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / Linux (linux_amd64_gcc4, quay.io/pypa/manylinux2014_x86_64, x64-linux)

expected primary-expression before ‘>’ token

Check failure on line 223 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / Linux (linux_amd64_gcc4, quay.io/pypa/manylinux2014_x86_64, x64-linux)

expected primary-expression before ‘)’ token

Check failure on line 223 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / Linux (linux_amd64_gcc4, quay.io/pypa/manylinux2014_x86_64, x64-linux)

‘make_shared_ptr’ is not a member of ‘duckdb’

Check failure on line 223 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / Linux (linux_amd64_gcc4, quay.io/pypa/manylinux2014_x86_64, x64-linux)

expected primary-expression before ‘>’ token

Check failure on line 223 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / Linux (linux_amd64_gcc4, quay.io/pypa/manylinux2014_x86_64, x64-linux)

expected primary-expression before ‘)’ token
strIndex = readGeoLoop(str, strIndex, outerVerts, polygon.geoloop);

std::vector<GeoLoop> holes;
Expand All @@ -231,7 +231,7 @@ static void PolygonWktToCellsFunction(DataChunk &args, ExpressionState &state,
if (str[strIndex] == '(') {
GeoLoop hole;
duckdb::shared_ptr<std::vector<LatLng>> verts =
duckdb::make_shared<std::vector<LatLng>>();
duckdb::make_shared_ptr<std::vector<LatLng>>();

Check failure on line 234 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / DuckDB-Wasm (wasm_threads, wasm32-emscripten)

no template named 'make_shared_ptr' in namespace 'duckdb'; did you mean 'make_shared'?

Check failure on line 234 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / DuckDB-Wasm (wasm_threads, wasm32-emscripten)

no template named 'make_shared_ptr' in namespace 'duckdb'; did you mean 'make_shared'?

Check failure on line 234 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / DuckDB-Wasm (wasm_mvp, wasm32-emscripten)

no template named 'make_shared_ptr' in namespace 'duckdb'; did you mean 'make_shared'?

Check failure on line 234 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / DuckDB-Wasm (wasm_mvp, wasm32-emscripten)

no template named 'make_shared_ptr' in namespace 'duckdb'; did you mean 'make_shared'?

Check failure on line 234 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / DuckDB-Wasm (wasm_eh, wasm32-emscripten)

no template named 'make_shared_ptr' in namespace 'duckdb'; did you mean 'make_shared'?

Check failure on line 234 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / DuckDB-Wasm (wasm_eh, wasm32-emscripten)

no template named 'make_shared_ptr' in namespace 'duckdb'; did you mean 'make_shared'?

Check failure on line 234 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / DuckDB-Wasm (wasm_threads, wasm32-emscripten)

no template named 'make_shared_ptr' in namespace 'duckdb'; did you mean 'make_shared'?

Check failure on line 234 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / DuckDB-Wasm (wasm_threads, wasm32-emscripten)

no template named 'make_shared_ptr' in namespace 'duckdb'; did you mean 'make_shared'?

Check failure on line 234 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / DuckDB-Wasm (wasm_mvp, wasm32-emscripten)

no template named 'make_shared_ptr' in namespace 'duckdb'; did you mean 'make_shared'?

Check failure on line 234 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / DuckDB-Wasm (wasm_mvp, wasm32-emscripten)

no template named 'make_shared_ptr' in namespace 'duckdb'; did you mean 'make_shared'?

Check failure on line 234 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / MacOS (osx_arm64, arm64, arm64-osx)

no template named 'make_shared_ptr' in namespace 'duckdb'; did you mean 'make_shared'?

Check failure on line 234 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / MacOS (osx_amd64, x86_64, x64-osx)

no template named 'make_shared_ptr' in namespace 'duckdb'; did you mean 'make_shared'?

Check failure on line 234 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / Linux (linux_amd64_gcc4, quay.io/pypa/manylinux2014_x86_64, x64-linux)

‘make_shared_ptr’ is not a member of ‘duckdb’

Check failure on line 234 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / Linux (linux_amd64_gcc4, quay.io/pypa/manylinux2014_x86_64, x64-linux)

expected primary-expression before ‘>’ token

Check failure on line 234 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / Linux (linux_amd64_gcc4, quay.io/pypa/manylinux2014_x86_64, x64-linux)

expected primary-expression before ‘)’ token

Check failure on line 234 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / Linux (linux_amd64_gcc4, quay.io/pypa/manylinux2014_x86_64, x64-linux)

‘make_shared_ptr’ is not a member of ‘duckdb’

Check failure on line 234 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / Linux (linux_amd64_gcc4, quay.io/pypa/manylinux2014_x86_64, x64-linux)

expected primary-expression before ‘>’ token

Check failure on line 234 in src/h3_regions.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / Linux (linux_amd64_gcc4, quay.io/pypa/manylinux2014_x86_64, x64-linux)

expected primary-expression before ‘)’ token
strIndex = readGeoLoop(str, strIndex, verts, hole);
holes.push_back(hole);
holesVerts.push_back(verts);
Expand Down

0 comments on commit 4a35a37

Please sign in to comment.