前提・実現したいこと
realmビルド時のエラーを原因を知りたいです。
下部の画像の様にpod update後からrealmのエラーが発生する様になりました。
調べてみましたが、このファイルが何を指すかもわかりません・・・
発生している問題・エラーメッセージ
'util/event_loop_signal.hpp' file not found
該当のソースコード
swift
1//////////////////////////////////////////////////////////////////////////// 2// 3// Copyright 2015 Realm Inc. 4// 5// Licensed under the Apache License, Version 2.0 (the "License"); 6// you may not use this file except in compliance with the License. 7// You may obtain a copy of the License at 8// 9// http://www.apache.org/licenses/LICENSE-2.0 10// 11// Unless required by applicable law or agreed to in writing, software 12// distributed under the License is distributed on an "AS IS" BASIS, 13// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14// See the License for the specific language governing permissions and 15// limitations under the License. 16// 17//////////////////////////////////////////////////////////////////////////// 18 19#include "impl/weak_realm_notifier.hpp" 20 21#include "shared_realm.hpp" 22#include "util/event_loop_signal.hpp" 23 24using namespace realm; 25using namespace realm::_impl; 26 27WeakRealmNotifier::WeakRealmNotifier(const std::shared_ptr<Realm>& realm, bool cache, bool bind_to_context) 28: m_realm(realm) 29, m_execution_context(realm->config().execution_context) 30, m_realm_key(realm.get()) 31, m_cache(cache) 32, m_signal(bind_to_context ? std::make_shared<util::EventLoopSignal<Callback>>(Callback{realm}) : nullptr) 33{ 34} 35 36WeakRealmNotifier::~WeakRealmNotifier() = default; 37 38void WeakRealmNotifier::Callback::operator()() const 39{ 40 if (auto realm = weak_realm.lock()) { 41 realm->notify(); 42 } 43} 44 45void WeakRealmNotifier::notify() 46{ 47 if (m_signal) 48 m_signal->notify(); 49} 50 51void WeakRealmNotifier::bind_to_execution_context(AnyExecutionContextID context) 52{ 53 REALM_ASSERT(!m_signal); 54 m_signal = std::make_shared<util::EventLoopSignal<Callback>>(Callback{m_realm}); 55 m_execution_context = context; 56} 57
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。