summaryrefslogtreecommitdiff
path: root/tools/thirdparty/OpenFst/fst/lib/arcsort.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/thirdparty/OpenFst/fst/lib/arcsort.h')
-rw-r--r--tools/thirdparty/OpenFst/fst/lib/arcsort.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/thirdparty/OpenFst/fst/lib/arcsort.h b/tools/thirdparty/OpenFst/fst/lib/arcsort.h
index 4d15adb..1486e50 100644
--- a/tools/thirdparty/OpenFst/fst/lib/arcsort.h
+++ b/tools/thirdparty/OpenFst/fst/lib/arcsort.h
@@ -283,7 +283,7 @@ template<class A> class ILabelCompare {
}
uint64 Properties(uint64 props) const {
- return props & kArcSortProperties | kILabelSorted;
+ return (props & kArcSortProperties) | kILabelSorted;
}
};
@@ -296,7 +296,7 @@ template<class A> class OLabelCompare {
}
uint64 Properties(uint64 props) const {
- return props & kArcSortProperties | kOLabelSorted;
+ return (props & kArcSortProperties) | kOLabelSorted;
}
};