mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-22 17:18:39 +00:00
Fix various copy instead of const ref reported by cppcheck (#5615)
* Also remove InventoryList::peekItem unused function * Fix some post increment to preincrement reported by cppcheck
This commit is contained in:
parent
cfe0291b13
commit
f3fe62a0bf
13 changed files with 46 additions and 68 deletions
|
@ -38,14 +38,14 @@ struct ChatLine
|
|||
// message text
|
||||
EnrichedString text;
|
||||
|
||||
ChatLine(std::wstring a_name, std::wstring a_text):
|
||||
ChatLine(const std::wstring &a_name, const std::wstring &a_text):
|
||||
age(0.0),
|
||||
name(a_name),
|
||||
text(a_text)
|
||||
{
|
||||
}
|
||||
|
||||
ChatLine(EnrichedString a_name, EnrichedString a_text):
|
||||
ChatLine(const EnrichedString &a_name, const EnrichedString &a_text):
|
||||
age(0.0),
|
||||
name(a_name),
|
||||
text(a_text)
|
||||
|
@ -148,7 +148,7 @@ private:
|
|||
class ChatPrompt
|
||||
{
|
||||
public:
|
||||
ChatPrompt(std::wstring prompt, u32 history_limit);
|
||||
ChatPrompt(const std::wstring &prompt, u32 history_limit);
|
||||
~ChatPrompt();
|
||||
|
||||
// Input character or string
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue