You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the YANG data model includes an action called delete, like in firewall service [1], the generated code includes methods called delete(...).
This is causing a compilation error because delete is a c++ reserved keyword.
A possible solution could be a check in code generation tools that adds a suffix to delete method, e.g. deletes or delete_action.
When the YANG data model includes an action called
delete
, like in firewall service [1], the generated code includes methods calleddelete(...)
.This is causing a compilation error because
delete
is a c++ reserved keyword.A possible solution could be a check in code generation tools that adds a suffix to delete method, e.g.
deletes
ordelete_action
.[1]
The text was updated successfully, but these errors were encountered: