From 781d8ee87c4dd2da62312060e5cbd8568ec163f8 Mon Sep 17 00:00:00 2001 From: Sascha Brawer Date: Wed, 6 Aug 2025 23:56:58 +0200 Subject: [PATCH] Include headers in example, so it compiles (#462) --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index fae283b..53d71cc 100644 --- a/README.md +++ b/README.md @@ -239,6 +239,9 @@ also want to override the positional help by calling `options.positional_help`. Putting all together: ```cpp +#include +#include "cxxopts.hpp" + int main(int argc, char** argv) { cxxopts::Options options("test", "A brief description");