Skip to content

Commit f4b68c0

Browse files
author
Fytch
committed
fix include directives in bind example
1 parent a8ae1b8 commit f4b68c0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -315,10 +315,10 @@ We may bind options to variables of type `std::string`, to 32- or 64-bit signed
315315
```cpp
316316
#include <ProgramOptions.hxx>
317317
#include <cstdint>
318-
#include <vector>
319318
#include <string>
319+
#include <vector>
320+
#include <deque>
320321
#include <iostream>
321-
#include <string_view>
322322

323323
int main( int argc, char** argv ) {
324324
po::parser parser;

examples/5 bind.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#include <ProgramOptions.hxx>
22
#include <cstdint>
3-
#include <vector>
43
#include <string>
4+
#include <vector>
5+
#include <deque>
56
#include <iostream>
6-
#include <string_view>
77

88
int main( int argc, char** argv ) {
99
po::parser parser;

0 commit comments

Comments
 (0)