mirror of
https://github.com/matrix-construct/construct
synced 2025-02-18 09:40:12 +01:00
modules/m_presence: Fix clang warning for reference in range for.
This commit is contained in:
parent
742c29500f
commit
1bc05f3900
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ try
|
|||
content.get("push")
|
||||
};
|
||||
|
||||
for(const json::object &presence : push)
|
||||
for(const json::object presence : push)
|
||||
handle_edu_m_presence_object(event, presence);
|
||||
}
|
||||
catch(const std::exception &e)
|
||||
|
|
Loading…
Add table
Reference in a new issue