From e3b3048d00629f1cccdab842cc57b65d73ed967a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Sat, 6 Jan 2024 18:36:34 +0100 Subject: [PATCH] test/helpers:h: fixed initialization order in `givenACodeSampleToTokenize` (#5849) --- test/helpers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/helpers.h b/test/helpers.h index ae4c49b1a..d1e7022b3 100644 --- a/test/helpers.h +++ b/test/helpers.h @@ -37,8 +37,8 @@ namespace simplecpp { class givenACodeSampleToTokenize { private: - Tokenizer tokenizer; const Settings settings; + Tokenizer tokenizer; public: explicit givenACodeSampleToTokenize(const char sample[], bool createOnly = false, bool cpp = true)