diff options
| author | Jason Merrill <jason@redhat.com> | 2024-10-09 12:31:57 -0400 |
|---|---|---|
| committer | Jason Merrill <jason@redhat.com> | 2024-10-09 17:28:35 -0400 |
| commit | d264b75eb29cfc1916e3c1ccc7a3251a40458392 (patch) | |
| tree | 70995a8a73fa2c65bc20ce800f06d5e18009954f /libcpp | |
| parent | 08e91d71e5cc155f1fe7b9ee1c44829aa24ff921 (diff) | |
| download | gcc-d264b75eb29cfc1916e3c1ccc7a3251a40458392.tar.gz gcc-d264b75eb29cfc1916e3c1ccc7a3251a40458392.tar.bz2 gcc-d264b75eb29cfc1916e3c1ccc7a3251a40458392.zip | |
libcpp: fix typo
libcpp/ChangeLog:
* macro.cc (_cpp_pop_context): Fix typo.
Diffstat (limited to 'libcpp')
| -rw-r--r-- | libcpp/macro.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcpp/macro.cc b/libcpp/macro.cc index 056b38e60931..2fb38618246a 100644 --- a/libcpp/macro.cc +++ b/libcpp/macro.cc @@ -2905,7 +2905,7 @@ _cpp_pop_context (cpp_reader *pfile) } pfile->context = context->prev; - /* decrease peak memory consumption by feeing the context. */ + /* Decrease peak memory consumption by freeing the context. */ pfile->context->next = NULL; free (context); } |
