File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 26
26
/*
27
27
* TINYEXPR++ - Tiny recursive descent parser and evaluation engine in C++
28
28
*
29
- * Copyright (c) 2020-2024 Blake Madden
29
+ * Copyright (c) 2020-2025 Blake Madden
30
30
*
31
31
* C++ version of the TinyExpr library.
32
32
*
Original file line number Diff line number Diff line change 26
26
/*
27
27
* TINYEXPR++ - Tiny recursive descent parser and evaluation engine in C++
28
28
*
29
- * Copyright (c) 2020-2024 Blake Madden
29
+ * Copyright (c) 2020-2025 Blake Madden
30
30
*
31
31
* C++ version of the TinyExpr library.
32
32
*
@@ -82,6 +82,7 @@ constexpr int TINYEXPR_CPP_MAJOR_VERSION = 1;
82
82
constexpr int TINYEXPR_CPP_MINOR_VERSION = 0 ;
83
83
constexpr int TINYEXPR_CPP_PATCH_VERSION = 0 ;
84
84
constexpr int TINYEXPR_CPP_TWEAK_VERSION = 0 ;
85
+ constexpr wchar_t TINYEXPR_CPP_COPYRIGHT[] = L" TinyExpr: Copyright (c) 2015-2020 Lewis Van Winkle\n TinyExpr++: Copyright (c) 2020-2025 Blake Madden" ;
85
86
86
87
class te_parser ;
87
88
You can’t perform that action at this time.
0 commit comments