diff options
author | Jerry DeLisle <jvdelisle@gcc.gnu.org> | 2025-09-02 15:58:26 -0700 |
---|---|---|
committer | Jerry DeLisle <jvdelisle@gcc.gnu.org> | 2025-09-02 15:58:26 -0700 |
commit | 071b4126c613881f4cb25b4e5c39032964827f88 (patch) | |
tree | 7ed805786566918630d1d617b1ed8f7310f5fd8e /gcc/diagnostics/buffering.h | |
parent | 845d23f3ea08ba873197c275a8857eee7edad996 (diff) | |
parent | caa1c2f42691d68af4d894a5c3e700ecd2dba080 (diff) | |
download | gcc-devel/gfortran-test.zip gcc-devel/gfortran-test.tar.gz gcc-devel/gfortran-test.tar.bz2 |
Merge branch 'master' into gfortran-testdevel/gfortran-test
Diffstat (limited to 'gcc/diagnostics/buffering.h')
-rw-r--r-- | gcc/diagnostics/buffering.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/diagnostics/buffering.h b/gcc/diagnostics/buffering.h index c3ac070..9b86fee 100644 --- a/gcc/diagnostics/buffering.h +++ b/gcc/diagnostics/buffering.h @@ -36,7 +36,7 @@ class sink; A diagnostics::buffer can be: * flushed to the diagnostics::context, which issues - the diagnostics within the buffer to the output format + the diagnostics within the buffer to the output sinks and checks for limits such as -fmax-errors=, or * moved to another diagnostics::buffer, which moves the diagnostics @@ -45,13 +45,13 @@ class sink; source buffer, or * cleared, which discards any diagnostics within the buffer - without issuing them to the output format. + without issuing them to the output sinks. - Since a buffer needs to contain output-format-specific data, - it's not possible to change the output format of the + Since a buffer needs to contain sink-specific data, + it's not possible to change the output sink(s) of the diagnostics::context once any buffers are non-empty. - To simplify implementing output formats, it's not possible + To simplify implementing output sinks, it's not possible to change buffering on a diagnostics::context whilst within a diagnostic group. */ |