From 1fd30db726a15696ba3637c8ab68e501ae758341 Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Mon, 29 Jun 2020 16:25:11 -0400 Subject: [PATCH] This example in our documentation would not compile (#1005) Co-authored-by: Daniel Lemire --- doc/implementation-selection.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/implementation-selection.md b/doc/implementation-selection.md index 87931aec..c7a4746c 100644 --- a/doc/implementation-selection.md +++ b/doc/implementation-selection.md @@ -47,7 +47,7 @@ Inspecting the Detected Implementation You can check what implementation is running with `active_implementation`: ```c++ -cout << "simdjson v" << #SIMDJSON_VERSION << endl; +cout << "simdjson v" << STRINGIFY(SIMDJSON_VERSION) << endl; cout << "Detected the best implementation for your machine: " << simdjson::active_implementation->name(); cout << "(" << simdjson::active_implementation->description() << ")" << endl; ```