Skip to content

Commit

Permalink
Add missing flag to Android blueprint (#7755)
Browse files Browse the repository at this point in the history
  • Loading branch information
leemaguire authored May 30, 2024
1 parent 4691492 commit ae3b22a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions Android.bp
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ cc_defaults {
"-DREALM_ENABLE_ENCRYPTION=1",
"-DREALM_ENABLE_SYNC=1",
"-DREALM_ENABLE_GEOSPATIAL=1",
"-DREALM_APP_SERVICES=1",
"-DREALM_HAVE_EPOLL=1",
"-DREALM_AOSP_VENDOR=1",
"-Wno-non-virtual-dtor",
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
### Fixed
* <How do the end-user experience this issue? what was the impact?> ([#????](https://github.com/realm/realm-core/issues/????), since v?.?.?)
* Add a missing file from the bid library to the android blueprint. (PR [#7738](https://github.com/realm/realm-core/pull/7738))
* Add missing `REALM_APP_SERVICES` flag to the android blueprint. (PR [#7755](https://github.com/realm/realm-core/pull/7755))

### Breaking changes
* None.
Expand Down
2 changes: 1 addition & 1 deletion src/realm/mixed.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -869,7 +869,7 @@ std::ostream& operator<<(std::ostream& out, const Mixed& m)
out << util::serializer::print_value(m.uuid_val);
break;
case type_Mixed:
REALM_ASSERT(false);
REALM_FALLTHROUGH;
default:
if (m.is_type(type_List)) {
out << "list";
Expand Down

0 comments on commit ae3b22a

Please sign in to comment.