Commit 45d1f4d5 authored by Dane Springmeyer's avatar Dane Springmeyer Committed by GitHub

Fix missing include

Fixes compile with libc++ on linux:

```
In file included from ../tests/cc/test_array_table.cc:17:
In file included from ../src/cc/api/BPF.h:24:
../src/cc/api/BPFTable.h:118:71: error: use of undeclared identifier 'errno'
      return StatusTuple(-1, "Error getting value: %s", std::strerror(errno));
```
parent 277657e4
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
#pragma once #pragma once
#include <cstring> #include <cstring>
#include <errno.h>
#include <sys/epoll.h> #include <sys/epoll.h>
#include <exception> #include <exception>
#include <map> #include <map>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment