Quickbook: Use intrusive_ptr for files.

[SVN r75616]
This commit is contained in:
Daniel James
2011-11-22 23:46:13 +00:00
parent 1a32f82bdb
commit 23e168a340
17 changed files with 123 additions and 112 deletions

View File

@@ -230,7 +230,7 @@ namespace detail {
}
}
ostream& outerr(file const* f, string_iterator pos)
ostream& outerr(file_ptr const& f, string_iterator pos)
{
return outerr(f->path, f->position_of(pos).line);
}
@@ -250,7 +250,7 @@ namespace detail {
}
}
ostream& outwarn(file const* f, string_iterator pos)
ostream& outwarn(file_ptr const& f, string_iterator pos)
{
return outwarn(f->path, f->position_of(pos).line);
}