Skip to content
Snippets Groups Projects
Commit f236a374 authored by rk's avatar rk
Browse files

Changed to const file name

parent cca8c899
No related merge requests found
......@@ -53,7 +53,7 @@ XcesReader::XcesReader(const Tagset& tagset, std::istream& is,
this->is_ = &is;
}
XcesReader::XcesReader(const Tagset& tagset, std::string& filename, bool disamb_only, bool disamb_sh)
XcesReader::XcesReader(const Tagset& tagset, const std::string& filename, bool disamb_only, bool disamb_sh)
: BufferedChunkReader(tagset),
impl_(new XcesReaderImpl(tagset, chunk_buf_, disamb_only, disamb_sh))
{
......
......@@ -17,7 +17,7 @@ public:
XcesReader(const Tagset& tagset, std::istream& is,
bool disamb_only = false, bool disamb_sh = false);
XcesReader(const Tagset& tagset, std::string& filename,
XcesReader(const Tagset& tagset, const std::string& filename,
bool disamb_only = false, bool disamb_sh = false);
~XcesReader();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment