Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
kaetemi committed Feb 24, 2023
1 parent 6edabfd commit 3b6ecad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ryzom/server/src/ai_service/ai_messages.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class CMsgAIOpenMgrs : public NLNET::CTransportClass
_name.push_back(name);
}

void push_back(uint16 idx,constr std::string &name)
void push_back(uint16 idx,const std::string &name)
{
_idx.push_back(idx);
_name.push_back(name);
Expand Down
2 changes: 1 addition & 1 deletion ryzom/server/src/ai_share/ais_messages.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class CMsgAIUploadActions : public NLNET::CTransportClass
virtual void description ()
{
className ("CMsgAIUploadActions");
property (std::string("data"), PropString, std::string(), Data);
property ("data", PropString, std::string(), Data);
}

virtual void callback (const std::string &name, NLNET::TServiceId id);
Expand Down

0 comments on commit 3b6ecad

Please sign in to comment.