Merge quickbook to release.

- Use `boost::string_ref`.
- Improved source map handling, unindent for code blocks.


[SVN r83133]
This commit is contained in:
Daniel James
2013-02-24 14:53:38 +00:00
parent 24474c11ca
commit dbb843095c
29 changed files with 843 additions and 479 deletions

View File

@@ -32,10 +32,10 @@ void qbk_tests()
"(fake file)", source, 105u);
q = quickbook::qbk_value(
fake_file,
fake_file->source.begin(),
fake_file->source.end());
fake_file->source().begin(),
fake_file->source().end());
}
BOOST_TEST_EQ(q.get_quickbook(), source);
BOOST_TEST_EQ(q.get_quickbook(), boost::string_ref(source));
}
void sort_test()