From: Ken Matsui Date: Wed, 9 Oct 2024 11:32:20 +0000 (-0400) Subject: libcpp: Use ' instead of %< and %> [PR117039] X-Git-Tag: basepoints/gcc-16~5354 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f709990333597b30dff54876bfdaada14e9cde30;p=thirdparty%2Fgcc.git libcpp: Use ' instead of %< and %> [PR117039] PR bootstrap/117039 libcpp/ChangeLog: * directives.cc (do_pragma_once): Use ' instead of %< and %>. Signed-off-by: Ken Matsui --- diff --git a/libcpp/directives.cc b/libcpp/directives.cc index 95095b08eaf..9c906b39066 100644 --- a/libcpp/directives.cc +++ b/libcpp/directives.cc @@ -2075,7 +2075,7 @@ do_pragma_once (cpp_reader *pfile) { if (_cpp_in_main_source_file (pfile)) cpp_warning (pfile, CPP_W_PRAGMA_ONCE_OUTSIDE_HEADER, - "%<#pragma once%> in main file"); + "'#pragma once' in main file"); check_eol (pfile, false); _cpp_mark_file_once_only (pfile, pfile->buffer->file);