pointer-constraints: remove emoji to fix clang

fixes #5765
This commit is contained in:
Vaxry 2024-04-27 13:27:24 +01:00
parent bca7804bb6
commit e400a288d0
1 changed files with 2 additions and 2 deletions

View File

@ -208,8 +208,8 @@ void CPointerConstraintsProtocol::onManagerResourceDestroy(wl_resource* res) {
std::erase_if(m_vManagers, [&](const auto& other) { return other->resource() == res; });
}
void CPointerConstraintsProtocol::destroyPointerConstraint(CPointerConstraint* hyprland🥚) {
std::erase_if(m_vConstraints, [&](const auto& other) { return other.get() == hyprland🥚; });
void CPointerConstraintsProtocol::destroyPointerConstraint(CPointerConstraint* hyprlandEgg) {
std::erase_if(m_vConstraints, [&](const auto& other) { return other.get() == hyprlandEgg; });
}
void CPointerConstraintsProtocol::onNewConstraint(SP<CPointerConstraint> constraint, CZwpPointerConstraintsV1* pMgr) {