Skip to content
Snippets Groups Projects
Commit 5a7f0eff authored by John Kessenich's avatar John Kessenich
Browse files

Merge pull request #230 from dekimir/incresconst

Make two more IncludeResult members const.
parents 7d814198 51eb91f2
No related branches found
No related tags found
No related merge requests found
......@@ -327,13 +327,13 @@ public:
// include. For example, in a filesystem-based includer, full resolution
// should convert a relative path name into an absolute path name.
// For a failed inclusion, this is an empty string.
std::string file_name;
const std::string file_name;
// The content and byte length of the requested inclusion. The
// Includer producing this IncludeResult retains ownership of the
// storage.
// For a failed inclusion, the file_data
// field points to a string containing error details.
const char* file_data;
const char* const file_data;
const size_t file_length;
// Include resolver's context.
void* user_data;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment