forked from organicmaps/organicmaps
Replaced ineffective char const * with string const &
This commit is contained in:
parent
b83905901e
commit
3cd091ed79
6 changed files with 6 additions and 6 deletions
|
@ -25,7 +25,7 @@ class FileReaderStream : public stream::ReaderStream<ReaderSource<FileReader> >
|
|||
ReaderSource<FileReader> m_reader;
|
||||
|
||||
public:
|
||||
FileReaderStream(char const * fName)
|
||||
FileReaderStream(string const & fName)
|
||||
: base_type(m_reader), m_file(fName), m_reader(m_file)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -10,7 +10,7 @@ class FileWriterStream : public stream::WriterStream<FileWriter>
|
|||
FileWriter m_file;
|
||||
|
||||
public:
|
||||
FileWriterStream(char const * fName)
|
||||
FileWriterStream(string const & fName)
|
||||
: base_type(m_file), m_file(fName) {}
|
||||
|
||||
using base_type::operator <<;
|
||||
|
|
|
@ -92,7 +92,7 @@ namespace classificator
|
|||
for (int i = 0; i <= 17; ++i)
|
||||
ftype::ParseOSMTypes(inFile.c_str(), i);
|
||||
|
||||
drule::WriteRules(string(path + "drawing_rules.bin").c_str());
|
||||
drule::WriteRules(string(path + "drawing_rules.bin"));
|
||||
classif().PrintClassificator(string(path + "classificator.txt").c_str());
|
||||
}
|
||||
|
||||
|
|
|
@ -136,7 +136,7 @@ namespace cache
|
|||
|
||||
public:
|
||||
DataFileBase(string const & name)
|
||||
: m_stream(name.c_str()), m_offsets(name + OFFSET_EXT)
|
||||
: m_stream(name), m_offsets(name + OFFSET_EXT)
|
||||
{
|
||||
}
|
||||
};
|
||||
|
|
|
@ -1056,7 +1056,7 @@ void RulesHolder::Write(FileWriterStream & s)
|
|||
s << m_container << m_rules;
|
||||
}
|
||||
|
||||
void WriteRules(char const * fPath)
|
||||
void WriteRules(string const & fPath)
|
||||
{
|
||||
FileWriterStream file(fPath);
|
||||
rules().Write(file);
|
||||
|
|
|
@ -166,7 +166,7 @@ namespace drule
|
|||
}
|
||||
};
|
||||
|
||||
void WriteRules(char const * fPath);
|
||||
void WriteRules(string const & fPath);
|
||||
void ReadRules(ReaderPtrStream & s);
|
||||
|
||||
RulesHolder & rules();
|
||||
|
|
Loading…
Add table
Reference in a new issue