mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
Switch SourceBuffer to diagnostics. (#3197)
This updates SourceBuffer to diagnostics. Some additional edits to diagnostics were necessary due to issues moving arguments around, which seems to stem from a compile error with clang 14 (fixed in later versions). --------- Co-authored-by: Richard Smith <richard@metafoo.co.uk>
This commit is contained in:
co-authored by
Richard Smith
parent
71e9fb7511
commit
bc63e6ae0a
@@ -26,8 +26,8 @@ class TreeTest : public ::testing::Test {
|
||||
auto GetSourceBuffer(llvm::StringRef t) -> SourceBuffer& {
|
||||
CARBON_CHECK(fs.addFile("test.carbon", /*ModificationTime=*/0,
|
||||
llvm::MemoryBuffer::getMemBuffer(t)));
|
||||
source_storage.push_front(std::move(
|
||||
*SourceBuffer::CreateFromFile(fs, llvm::errs(), "test.carbon")));
|
||||
source_storage.push_front(
|
||||
std::move(*SourceBuffer::CreateFromFile(fs, "test.carbon", consumer)));
|
||||
return source_storage.front();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user