Skip to content

Commit 5d8775b

Browse files
authored
Add missing optional include. (#46)
Signed-off-by: John Plevyak <[email protected]>
1 parent fd88c48 commit 5d8775b

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

include/proxy-wasm/context_interface.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#include <chrono>
2121
#include <functional>
2222
#include <iostream>
23+
#include <optional>
2324
#include <map>
2425
#include <memory>
2526
#include <vector>

include/proxy-wasm/wasm_vm.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
#include <functional>
1919
#include <memory>
20+
#include <optional>
2021

2122
#include "include/proxy-wasm/word.h"
2223

src/v8/v8.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
#include <cassert>
1919

2020
#include <memory>
21+
#include <optional>
2122
#include <utility>
2223
#include <vector>
2324

src/wavm/wavm.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
#include <iostream>
1919
#include <memory>
20+
#include <optional>
2021
#include <unordered_map>
2122
#include <utility>
2223
#include <vector>

0 commit comments

Comments
 (0)