Files
ports/math/openfst/files/patch-src_include_fst_fst.h
T
Yuri Victorovich f381a031a2 math/openfst: Fix build
Reported by:	fallout
2026-03-21 23:07:02 -07:00

14 lines
537 B
C

--- src/include/fst/fst.h.orig 2026-03-22 05:51:04 UTC
+++ src/include/fst/fst.h
@@ -652,8 +652,8 @@ class FstImpl {
FstImpl &operator=(const FstImpl<Arc> &impl) {
properties_ = impl.properties_;
type_ = impl.type_;
- isymbols_ = impl.isymbols_ ? impl.isymbols_->Copy() : nullptr;
- osymbols_ = impl.osymbols_ ? impl.osymbols_->Copy() : nullptr;
+ isymbols_.reset(impl.isymbols_ ? impl.isymbols_->Copy() : nullptr);
+ osymbols_.reset(impl.osymbols_ ? impl.osymbols_->Copy() : nullptr);
return *this;
}