forked from realm/realm-js
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrating from
util::Optional
to std::optional
since Realm Core i…
…s moving that way (realm#6449) * Migrating from `tul::Optional` to `std::optional` since Realm Core is moving that way * Update core * Update CHANGELOG.md * Make linter great again
- Loading branch information
Showing
12 changed files
with
428 additions
and
157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule realm-core
updated
24 files
+13 −5 | CHANGELOG.md | |
+79 −79 | bindgen/spec.yml | |
+14 −5 | bindgen/src/bound-model.ts | |
+9 −2 | bindgen/src/cpp.ts | |
+1 −0 | bindgen/src/realm_helpers.h | |
+178 −152 | package-lock.json | |
+8 −6 | package.json | |
+13 −0 | src/realm.h | |
+15 −0 | src/realm/object-store/c_api/app.cpp | |
+5 −0 | src/realm/object-store/c_api/sync.cpp | |
+13 −0 | src/realm/object-store/c_api/types.hpp | |
+0 −22 | src/realm/object-store/sync/sync_user.cpp | |
+0 −22 | src/realm/object-store/sync/sync_user.hpp | |
+1 −1 | src/realm/parser/driver.cpp | |
+24 −0 | src/realm/query.cpp | |
+5 −0 | src/realm/query.hpp | |
+6 −6 | src/realm/query_engine.cpp | |
+20 −9 | src/realm/query_engine.hpp | |
+11 −6 | src/realm/sync/noinst/client_history_impl.cpp | |
+7 −0 | test/object-store/c_api/c_api.cpp | |
+58 −0 | test/object-store/sync/flx_sync.cpp | |
+53 −0 | test/test_query.cpp | |
+30 −13 | test/util/unit_test.hpp | |
+2 −4 | tools/build-apple-device.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters