summaryrefslogtreecommitdiff
path: root/src/utils/automata/dfa_minimizer.hpp
diff options
context:
space:
mode:
authorOliver Reiche <oliver.reiche@huawei.com>2024-12-16 13:38:09 +0100
committerOliver Reiche <oliver.reiche@huawei.com>2024-12-19 16:17:46 +0100
commit827f05a53cb831bd54166ee812752ae3cce2b69b (patch)
treed6c68f39ce0e06384bf1a0e86c847ce1ff2ee9e4 /src/utils/automata/dfa_minimizer.hpp
parent8fb0006e710e465c9778f0ad9c84e8ad74042960 (diff)
downloadjustbuild-827f05a53cb831bd54166ee812752ae3cce2b69b.tar.gz
Fix struct member initialization
Diffstat (limited to 'src/utils/automata/dfa_minimizer.hpp')
-rw-r--r--src/utils/automata/dfa_minimizer.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/automata/dfa_minimizer.hpp b/src/utils/automata/dfa_minimizer.hpp
index af0da1c9..c4201c97 100644
--- a/src/utils/automata/dfa_minimizer.hpp
+++ b/src/utils/automata/dfa_minimizer.hpp
@@ -48,7 +48,7 @@ class DFAMinimizer {
// Bucket of states with equal local properties (content and acceptance)
struct Bucket {
std::vector<std::string> symbols;
- states_t states;
+ states_t states{};
};
// Key used for state pairs. Reordering names will result in the same key.