mirror of
https://github.com/matrix-construct/construct
synced 2024-12-25 06:53:58 +01:00
ircd:Ⓜ️ Fix range-loop-construct warning (clang).
This commit is contained in:
parent
35e8d83d45
commit
756d16220e
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ try
|
|||
if(preset != "trusted_private_chat")
|
||||
return;
|
||||
|
||||
for(const json::string &user_id : json::get<"invite"_>(c))
|
||||
for(const json::string user_id : json::get<"invite"_>(c))
|
||||
if(valid(id::USER, user_id))
|
||||
json::stack::member
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue