Fixed build for macOS.

This commit is contained in:
23rd
2020-06-11 20:40:27 +03:00
committed by John Preston
parent dddd355f6c
commit 9faf15943a
5 changed files with 20 additions and 16 deletions
+1 -1
View File
@@ -65,7 +65,7 @@ rpl::producer<UpdateType> Changes::Manager<DataType, UpdateType>::updates(
template <typename DataType, typename UpdateType>
auto Changes::Manager<DataType, UpdateType>::realtimeUpdates(Flag flag) const
-> rpl::producer<UpdateType> {
return _realtimeStreams[CountBit(flag)].events();
return _realtimeStreams[details::CountBit(flag)].events();
}
template <typename DataType, typename UpdateType>