0
0
Fork 0
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:
Jason Volk 2020-09-28 02:10:51 -07:00
parent 742c29500f
commit 1bc05f3900

View file

@ -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)