diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-07-26 09:22:05 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-07-26 09:33:37 +0300 |
commit | 34ab3adbcc3e6269efe39a33ab7ec22f05bd7cc9 (patch) | |
tree | 4cd77307594fef1ace6b58b91b2b0f2b1559eccf /contrib/libs | |
parent | d703a0eb0e1e0daf6cdcb767da78779a9328303d (diff) | |
download | ydb-34ab3adbcc3e6269efe39a33ab7ec22f05bd7cc9.tar.gz |
Intermediate changes
Diffstat (limited to 'contrib/libs')
-rw-r--r-- | contrib/libs/dtl/ChangeLog | 6 | ||||
-rw-r--r-- | contrib/libs/dtl/dtl/Diff.hpp | 2 | ||||
-rw-r--r-- | contrib/libs/dtl/dtl/variables.hpp | 2 | ||||
-rw-r--r-- | contrib/libs/dtl/ya.make | 4 |
4 files changed, 10 insertions, 4 deletions
diff --git a/contrib/libs/dtl/ChangeLog b/contrib/libs/dtl/ChangeLog index de19a6bee3..3bf2e85908 100644 --- a/contrib/libs/dtl/ChangeLog +++ b/contrib/libs/dtl/ChangeLog @@ -1,3 +1,9 @@ +2024-07-11 Tatsuhiko Kubo <cubicdaiya@gmail.com> + + * bugfix: fix compilation error in C++14 (#18). Thanks to @ZaychukAleksey + + * 1.21 released + 2022-04-11 Tatsuhiko Kubo <cubicdaiya@gmail.com> * bugfix: fixed invalid offset in unified format difference when difference is too large. diff --git a/contrib/libs/dtl/dtl/Diff.hpp b/contrib/libs/dtl/dtl/Diff.hpp index 8c9c774f5d..57067f9f02 100644 --- a/contrib/libs/dtl/dtl/Diff.hpp +++ b/contrib/libs/dtl/dtl/Diff.hpp @@ -164,7 +164,7 @@ namespace dtl { return trivial; } - void enableTrivial () const { + void enableTrivial () { this->trivial = true; } diff --git a/contrib/libs/dtl/dtl/variables.hpp b/contrib/libs/dtl/dtl/variables.hpp index 6720ec8663..4f53a88789 100644 --- a/contrib/libs/dtl/dtl/variables.hpp +++ b/contrib/libs/dtl/dtl/variables.hpp @@ -63,7 +63,7 @@ namespace dtl { /** * version string */ - const string version = "1.20"; + const string version = "1.21"; /** * type of edit for SES diff --git a/contrib/libs/dtl/ya.make b/contrib/libs/dtl/ya.make index 80028875ce..8e61f56df4 100644 --- a/contrib/libs/dtl/ya.make +++ b/contrib/libs/dtl/ya.make @@ -9,8 +9,8 @@ LICENSE( LICENSE_TEXTS(.yandex_meta/licenses.list.txt) -VERSION(1.20) +VERSION(1.21) -ORIGINAL_SOURCE(https://github.com/cubicdaiya/dtl/archive/v1.20.tar.gz) +ORIGINAL_SOURCE(https://github.com/cubicdaiya/dtl/archive/v1.21.tar.gz) END() |