diff options
author | David Malcolm <dmalcolm@redhat.com> | 2020-01-15 10:31:36 -0500 |
---|---|---|
committer | David Malcolm <dmalcolm@redhat.com> | 2020-01-15 18:44:53 -0500 |
commit | 49e9a9996ab334133c78f1445173d8e663edd3e9 (patch) | |
tree | c95d66f4fc7c9b92ef92d981713d7ec42ddda63e | |
parent | 83fe2b921830c177e3dee514aa07cbc7c8ceef1c (diff) | |
download | gcc-49e9a9996ab334133c78f1445173d8e663edd3e9.zip gcc-49e9a9996ab334133c78f1445173d8e663edd3e9.tar.gz gcc-49e9a9996ab334133c78f1445173d8e663edd3e9.tar.bz2 |
analyzer: fix comment
I rewrote class impl_region_model_context to avoid using multiple
inheritance during patch review but forgot to update this comment.
Fix it.
gcc/analyzer/ChangeLog:
* engine.cc (class impl_region_model_context): Fix comment.
-rw-r--r-- | gcc/analyzer/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/analyzer/engine.cc | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/analyzer/ChangeLog b/gcc/analyzer/ChangeLog index 340288c..2ca7144 100644 --- a/gcc/analyzer/ChangeLog +++ b/gcc/analyzer/ChangeLog @@ -1,3 +1,7 @@ +2020-01-15 David Malcolm <dmalcolm@redhat.com> + + * engine.cc (class impl_region_model_context): Fix comment. + 2020-01-14 David Malcolm <dmalcolm@redhat.com> PR analyzer/93212 diff --git a/gcc/analyzer/engine.cc b/gcc/analyzer/engine.cc index 9092024..92615e6 100644 --- a/gcc/analyzer/engine.cc +++ b/gcc/analyzer/engine.cc @@ -64,7 +64,7 @@ along with GCC; see the file COPYING3. If not see static int readability_comparator (const void *p1, const void *p2); -/* class impl_region_model_context : public region_model_context, public log_user. */ +/* class impl_region_model_context : public region_model_context. */ impl_region_model_context:: impl_region_model_context (exploded_graph &eg, |