Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into ion-geocoder
Browse files Browse the repository at this point in the history
  • Loading branch information
kring committed Dec 4, 2024
2 parents f678ff8 + 624f5b2 commit dd2952c
Show file tree
Hide file tree
Showing 11 changed files with 757 additions and 4 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,12 @@ jobs:
steps:
- name: Install Doxygen
run: |
sudo apt install -y doxygen
cd ~
wget https://github.com/doxygen/doxygen/releases/download/Release_1_12_0/doxygen-1.12.0.linux.bin.tar.gz
tar xzf doxygen-1.12.0.linux.bin.tar.gz
export PATH=$PWD/doxygen-1.12.0/bin:$PATH
echo "PATH=$PATH" >> "$GITHUB_ENV"
doxygen --version
- name: Check out repository code
uses: actions/checkout@v4
with:
Expand Down
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,13 @@
### ? - ?

##### Additions :tada:

- Added `CesiumIonClient::Connection::geocode` method for making geocoding queries against the Cesium ion geocoder API.

##### Fixes :wrench:

- Fixed a bug in `thenPassThrough` that caused a compiler error when given a value by r-value refrence.

### v0.42.0 - 2024-12-02

##### Breaking Changes :mega:
Expand Down
2 changes: 1 addition & 1 deletion CesiumAsync/include/CesiumAsync/Future.h
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ template <typename T> class Future final {
* followed by the result of the last Future.
*/
template <typename... TPassThrough>
Future<std::tuple<TPassThrough..., T>>
Future<std::tuple<std::remove_cvref_t<TPassThrough>..., T>>
thenPassThrough(TPassThrough&&... values) && {
return std::move(*this).thenImmediately(
[values = std::tuple(std::forward<TPassThrough>(values)...)](
Expand Down
Loading

0 comments on commit dd2952c

Please sign in to comment.