diff options
| author | elen-volodina <[email protected]> | 2025-09-01 10:54:34 +0300 |
|---|---|---|
| committer | elen-volodina <[email protected]> | 2025-09-01 11:19:20 +0300 |
| commit | e425f78d97a33161a9cbe52e30fca0f799d98123 (patch) | |
| tree | 3be29040395b0d05d9065f35973da2c0e2a1ad72 /contrib/libs/antlr4_cpp_runtime/src/misc/IntervalSet.cpp | |
| parent | 38c78a52abdf5359d439eb3c71bd9cdbdd41a56b (diff) | |
Update antlr
commit_hash:0e419ee5e22aa5e20b90c88651b983539ded9a68
Diffstat (limited to 'contrib/libs/antlr4_cpp_runtime/src/misc/IntervalSet.cpp')
| -rw-r--r-- | contrib/libs/antlr4_cpp_runtime/src/misc/IntervalSet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libs/antlr4_cpp_runtime/src/misc/IntervalSet.cpp b/contrib/libs/antlr4_cpp_runtime/src/misc/IntervalSet.cpp index d230bf45f6a..dcfbe9c7608 100644 --- a/contrib/libs/antlr4_cpp_runtime/src/misc/IntervalSet.cpp +++ b/contrib/libs/antlr4_cpp_runtime/src/misc/IntervalSet.cpp @@ -37,7 +37,7 @@ IntervalSet& IntervalSet::operator=(const IntervalSet& other) { } IntervalSet& IntervalSet::operator=(IntervalSet&& other) { - _intervals = move(other._intervals); + _intervals = std::move(other._intervals); return *this; } |
