From 2c9d6044bc036770f0a4626b9119950282755955 Mon Sep 17 00:00:00 2001 From: firewave Date: Mon, 22 Apr 2024 18:40:47 +0200 Subject: [PATCH] added accessor for `TokenList::files` --- simplecpp.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/simplecpp.h b/simplecpp.h index 87238378..c72e4c65 100755 --- a/simplecpp.h +++ b/simplecpp.h @@ -272,6 +272,10 @@ namespace simplecpp { /** sizeof(T) */ std::map sizeOfType; + const std::vector& getFiles() const { + return files; + } + private: void combineOperators();