We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd6a3f9 commit 10357c5Copy full SHA for 10357c5
src/realm/object-store/c_api/types.hpp
@@ -113,13 +113,11 @@ struct realm_async_error : realm::c_api::WrapC {
113
explicit realm_async_error(const realm::c_api::ErrorStorage& storage)
114
: error_storage(storage)
115
{
116
- printf("explicit realm_async_error(const realm::c_api::ErrorStorage& storage)\n");
117
}
118
119
explicit realm_async_error(std::exception_ptr ep)
120
: error_storage(std::move(ep))
121
122
- printf("explicit realm_async_error(std::exception_ptr ep)\n");
123
124
125
realm_async_error* clone() const override
0 commit comments