Skip to content

Commit

Permalink
Issue warning if unsupported dp symbol size used
Browse files Browse the repository at this point in the history
  • Loading branch information
keithvetter committed Sep 6, 2024
1 parent a86dfd2 commit bbbcc57
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions libkoviz/product_parser.y
Original file line number Diff line number Diff line change
Expand Up @@ -426,6 +426,9 @@ y_var: DP_Y_VARIABLE ':' DP_STR {
currYVar->setSymbolStyle($4);
}
}
| y_var DP_SYMBOL_SIZE ':' DP_STR {
msg("SYMBOL_SIZE not supported.");
}
| y_var DP_SYMBOL_END ':' DP_STR {
if ( isXYPair ) {
currXYPairYVar->setSymbolEnd($4);
Expand Down

0 comments on commit bbbcc57

Please sign in to comment.