From b513d0deef521318ad943d820dd37029075a33c4 Mon Sep 17 00:00:00 2001 From: Sai Praveen Bangaru <31557731+saipraveenb25@users.noreply.github.com> Date: Mon, 11 Jul 2022 23:18:06 -0400 Subject: Added support for differentiating calls to basic functions, as well as arithmetic on the float3 type (#2313) * Added support for differentiating calls to basic functions, as well as arithmetic on the float3 type * Added test expected result --- source/compiler-core/slang-diagnostic-sink.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/compiler-core') diff --git a/source/compiler-core/slang-diagnostic-sink.cpp b/source/compiler-core/slang-diagnostic-sink.cpp index 0110b16d7..34a3c4968 100644 --- a/source/compiler-core/slang-diagnostic-sink.cpp +++ b/source/compiler-core/slang-diagnostic-sink.cpp @@ -642,13 +642,13 @@ void DiagnosticSink::diagnoseRaw( // Did the client supply a callback for us to use? if(writer) { - // If so, pass the error string along to them + // If so, pass the error string along to them. writer->write(message.begin(), message.getLength()); } else { // If the user doesn't have a callback, then just - // collect our diagnostic messages into a buffer + // collect our diagnostic messages into a buffer. outputBuffer.append(message); } -- cgit v1.2.3