]> granicus.if.org Git - graphviz/commit
cgraph aagerror: squash -Wswitch-default warning
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 16 Oct 2022 03:59:03 +0000 (20:59 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 19 Oct 2022 14:44:37 +0000 (07:44 -0700)
commit3f5163f53f081d8ab95611056d86bb407b7fe4cc
tree0ea1e0c3d6ac9256b098eeeaad106155c8bc5432
parentb89294846e123f62d1377a160b1b4f3836f82da2
cgraph aagerror: squash -Wswitch-default warning

Squashes:

  ../../lib/cgraph/scan.l: In function â€˜aagerror’:
  ../../lib/cgraph/scan.l:232:14: warning: switch missing default case
    [-Wswitch-default]
    232 |         else switch (YYSTATE) {
        |              ^~~~~~

This switch is adding more information to the error message based on which
lexing state we are in, of which four are defined: `INITIAL` (the built-in start
state), `comment`, `hstring`, and `qstring`. In the `INITIAL` state there is no
extra information to add.
lib/cgraph/scan.l