diff options
| author | Carmine Scarpitta <cscarpit@cisco.com> | 2024-02-10 00:44:50 +0100 |
|---|---|---|
| committer | Carmine Scarpitta <cscarpit@cisco.com> | 2024-02-10 00:44:50 +0100 |
| commit | 6d1c04f4d0f4b218beb45e9efc1a1fcd823b964f (patch) | |
| tree | ddea0443d9a13e2d9e73aafa14ae44a276a9d228 | |
| parent | 75d3e4336855c2631f0a7bbecb1548ef8a7a9fb7 (diff) | |
qpb: Add missing `#include nexthop.h`
In `qpb.h` we have a bunch of functions that make use of
`union g_addr`. `union g_addr` is defined in `nexthop.h`, which
actually is NOT included in `qpb.h`.
Let's add the missing `#include nexthop.h`.
Signed-off-by: Carmine Scarpitta <cscarpit@cisco.com>
| -rw-r--r-- | qpb/qpb.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -14,6 +14,7 @@ #ifndef _QPB_H #define _QPB_H +#include "nexthop.h" #include "prefix.h" #include "qpb/qpb.pb-c.h" |
