Skip to content

Commit 20c2615

Browse files
committed
Add TINYEXPR_CPP_COPYRIGHT constant, bump copyright date
1 parent a9378e5 commit 20c2615

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

tinyexpr.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
/*
2727
* TINYEXPR++ - Tiny recursive descent parser and evaluation engine in C++
2828
*
29-
* Copyright (c) 2020-2024 Blake Madden
29+
* Copyright (c) 2020-2025 Blake Madden
3030
*
3131
* C++ version of the TinyExpr library.
3232
*

tinyexpr.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
/*
2727
* TINYEXPR++ - Tiny recursive descent parser and evaluation engine in C++
2828
*
29-
* Copyright (c) 2020-2024 Blake Madden
29+
* Copyright (c) 2020-2025 Blake Madden
3030
*
3131
* C++ version of the TinyExpr library.
3232
*
@@ -82,6 +82,7 @@ constexpr int TINYEXPR_CPP_MAJOR_VERSION = 1;
8282
constexpr int TINYEXPR_CPP_MINOR_VERSION = 0;
8383
constexpr int TINYEXPR_CPP_PATCH_VERSION = 0;
8484
constexpr int TINYEXPR_CPP_TWEAK_VERSION = 0;
85+
constexpr wchar_t TINYEXPR_CPP_COPYRIGHT[] = L"TinyExpr: Copyright (c) 2015-2020 Lewis Van Winkle\nTinyExpr++: Copyright (c) 2020-2025 Blake Madden";
8586

8687
class te_parser;
8788

0 commit comments

Comments
 (0)