mirror of
https://github.com/boostorg/quickbook.git
synced 2026-01-25 18:32:25 +00:00
Quickbook: Windows compile fixes.
I really need to use either a custom string class or a custom stream class to avoid this. [SVN r75729]
This commit is contained in:
@@ -528,13 +528,17 @@ namespace quickbook
|
||||
while (snippet_stack) {
|
||||
if (qbk_version_n >= 106u) {
|
||||
detail::outerr(source_file->path)
|
||||
<< "Unclosed snippet '" << snippet_stack->id << "'"
|
||||
<< "Unclosed snippet '"
|
||||
<< detail::utf8(snippet_stack->id)
|
||||
<< "'"
|
||||
<< std::endl;
|
||||
++error_count;
|
||||
}
|
||||
else {
|
||||
detail::outwarn(source_file->path)
|
||||
<< "Unclosed snippet '" << snippet_stack->id << "'"
|
||||
<< "Unclosed snippet '"
|
||||
<< detail::utf8(snippet_stack->id)
|
||||
<< "'"
|
||||
<< std::endl;
|
||||
}
|
||||
|
||||
|
||||
@@ -68,7 +68,7 @@ namespace quickbook
|
||||
if (!info.full) {
|
||||
detail::outerr()
|
||||
<< "Error parsing command line definition: '"
|
||||
<< *it
|
||||
<< detail::utf8(*it)
|
||||
<< "'"
|
||||
<< std::endl;
|
||||
++actor.error_count;
|
||||
|
||||
Reference in New Issue
Block a user