From 7599d48ca29f8d83333bf5614c9d3ec9e4264db3 Mon Sep 17 00:00:00 2001 From: firewave Date: Mon, 11 Sep 2023 17:47:49 +0200 Subject: [PATCH] fixed `-Winconsistent-missing-destructor-override` Clang warning --- simplecpp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simplecpp.cpp b/simplecpp.cpp index a24a3105..71f03199 100755 --- a/simplecpp.cpp +++ b/simplecpp.cpp @@ -402,7 +402,7 @@ class FileStream : public simplecpp::TokenList::Stream { init(); } - ~FileStream() { + ~FileStream() OVERRIDE { fclose(file); file = nullptr; }