Skip to content

Commit

Permalink
Revert some changes
Browse files Browse the repository at this point in the history
  • Loading branch information
nirinchev committed Mar 14, 2022
1 parent 8861d56 commit 4a44cbc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion wrappers/realm-core
Submodule realm-core updated 39 files
+2 −2 CHANGELOG.md
+11 −27 CMakeLists.txt
+81 −73 Jenkinsfile
+21 −27 evergreen/config.yml
+0 −3 generic.Dockerfile
+1 −2 src/realm.h
+4 −8 src/realm/object-store/c_api/conversion.hpp
+4 −5 src/realm/object-store/impl/realm_coordinator.cpp
+1 −5 src/realm/object-store/schema.hpp
+2 −5 src/realm/object-store/shared_realm.cpp
+179 −172 test/CMakeLists.txt
+97 −0 test/ios/README.md
+88 −0 test/ios/template/App.gyp.sh
+36 −0 test/ios/template/App.scheme.sh
+45 −0 test/ios/template/App/App-Info.plist
+25 −0 test/ios/template/App/AppDelegate.h
+76 −0 test/ios/template/App/AppDelegate.mm
+53 −0 test/ios/template/App/Images.xcassets/AppIcon.appiconset/Contents.json
+51 −0 test/ios/template/App/Images.xcassets/LaunchImage.launchimage/Contents.json
+2 −0 test/ios/template/App/en.lproj/InfoPlist.strings
+18 −0 test/ios/template/App/main.m
+ test/ios/template/Leaks.tracetemplate
+2 −28 test/main.cpp
+0 −1 test/object-store/CMakeLists.txt
+1 −2 test/object-store/c_api/c_api.cpp
+2 −78 test/object-store/migrations.cpp
+3 −13 test/object-store/realm.cpp
+3 −6 test/test_all.cpp
+1 −1 test/test_all.hpp
+2 −2 test/test_upgrade_database.cpp
+73 −39 tools/build-cocoa.sh
+28 −0 tools/cmake/Utilities.cmake
+32 −0 tools/cmake/ios.toolchain.cmake
+11 −0 tools/cmake/maccatalyst.toolchain.cmake
+10 −0 tools/cmake/macosx.toolchain.cmake
+26 −0 tools/cmake/tvos.toolchain.cmake
+26 −0 tools/cmake/watchos.toolchain.cmake
+0 −46 tools/cmake/xcode.toolchain.cmake
+16 −5 tools/cross_compile.sh
2 changes: 1 addition & 1 deletion wrappers/src/shared_realm_cs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ REALM_EXPORT SharedRealm* shared_realm_open(Configuration configuration, SchemaO
if (configuration.read_only) {
config.schema_mode = SchemaMode::Immutable;
} else if (configuration.delete_if_migration_needed) {
config.schema_mode = SchemaMode::SoftResetFile;
config.schema_mode = SchemaMode::ResetFile;
}

if (objects_length > 0) {
Expand Down

0 comments on commit 4a44cbc

Please sign in to comment.