@@ -33,12 +33,12 @@ namespace {
3333template <typename String>
3434struct StringLiteralParser {
3535 std::string_view text;
36- DiagnosticsClient * diagnostics;
36+ DiagnosticsClient* diagnostics;
3737 String value;
3838 int pos = 0 ;
3939
4040 explicit StringLiteralParser (std::string_view text,
41- DiagnosticsClient * diagnostics)
41+ DiagnosticsClient* diagnostics)
4242 : text(text), diagnostics(diagnostics) {}
4343
4444 [[nodiscard]] auto LA (int n = 0 ) -> int {
@@ -355,7 +355,7 @@ void IntegerLiteral::initialize() const {
355355}
356356
357357auto IntegerLiteral::Components::from (std::string_view text,
358- DiagnosticsClient * diagnostics)
358+ DiagnosticsClient* diagnostics)
359359 -> Components {
360360 std::string integerPart;
361361 integerPart.reserve (text.size ());
@@ -578,7 +578,7 @@ void FloatLiteral::initialize() const {
578578}
579579
580580auto FloatLiteral::Components::from (std::string_view text,
581- DiagnosticsClient * diagnostics)
581+ DiagnosticsClient* diagnostics)
582582 -> Components {
583583 std::size_t pos = 0 ;
584584
@@ -737,7 +737,7 @@ auto FloatLiteral::Components::from(std::string_view text,
737737}
738738
739739auto StringLiteral::Components::from (std::string_view text,
740- DiagnosticsClient * diagnostics)
740+ DiagnosticsClient* diagnostics)
741741 -> Components {
742742 StringLiteralParser<std::string> parser (text, diagnostics);
743743
@@ -754,7 +754,7 @@ void StringLiteral::initialize() const {
754754}
755755
756756auto CharLiteral::Components::from (std::string_view text,
757- DiagnosticsClient * diagnostics)
757+ DiagnosticsClient* diagnostics)
758758 -> Components {
759759 StringLiteralParser<std::string> parser (text, diagnostics);
760760
0 commit comments