Skip to content

Commit ae3b22a

Browse files
authored
Add missing flag to Android blueprint (#7755)
1 parent 4691492 commit ae3b22a

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

Android.bp

+1
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@ cc_defaults {
156156
"-DREALM_ENABLE_ENCRYPTION=1",
157157
"-DREALM_ENABLE_SYNC=1",
158158
"-DREALM_ENABLE_GEOSPATIAL=1",
159+
"-DREALM_APP_SERVICES=1",
159160
"-DREALM_HAVE_EPOLL=1",
160161
"-DREALM_AOSP_VENDOR=1",
161162
"-Wno-non-virtual-dtor",

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
### Fixed
77
* <How do the end-user experience this issue? what was the impact?> ([#????](https://github.com/realm/realm-core/issues/????), since v?.?.?)
88
* Add a missing file from the bid library to the android blueprint. (PR [#7738](https://github.com/realm/realm-core/pull/7738))
9+
* Add missing `REALM_APP_SERVICES` flag to the android blueprint. (PR [#7755](https://github.com/realm/realm-core/pull/7755))
910

1011
### Breaking changes
1112
* None.

src/realm/mixed.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -869,7 +869,7 @@ std::ostream& operator<<(std::ostream& out, const Mixed& m)
869869
out << util::serializer::print_value(m.uuid_val);
870870
break;
871871
case type_Mixed:
872-
REALM_ASSERT(false);
872+
REALM_FALLTHROUGH;
873873
default:
874874
if (m.is_type(type_List)) {
875875
out << "list";

0 commit comments

Comments
 (0)