Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Model.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ const zSTRING sep = " \t";
const zSTRING trenn = " \t\r";
const zSTRING skip = " \t\r";

void CutMarks(zSTRING arg)
static void CutMarks(zSTRING& arg)
{
arg.Delete("\"", zSTR_TO);
arg.Delete("\"", zSTR_FROM);
}

zSTRING CutMarks2(zSTRING arg)
static zSTRING CutMarks2(const zSTRING& arg)
{
zSTRING n = arg;
n.Delete("\"", zSTR_TO);
Expand Down