diff options
Diffstat (limited to 'src/regex_impl.hh')
| -rw-r--r-- | src/regex_impl.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/regex_impl.hh b/src/regex_impl.hh index 8853ced5..d62261ec 100644 --- a/src/regex_impl.hh +++ b/src/regex_impl.hh @@ -169,8 +169,8 @@ struct CompiledRegex : UseMemoryDomain<MemoryDomain::Regex> bool map[count]; }; - std::unique_ptr<StartDesc> forward_start_desc; - std::unique_ptr<StartDesc> backward_start_desc; + UniquePtr<StartDesc> forward_start_desc; + UniquePtr<StartDesc> backward_start_desc; }; String dump_regex(const CompiledRegex& program); @@ -751,7 +751,7 @@ private: return res; } - std::unique_ptr<Thread[]> m_data; + UniquePtr<Thread[]> m_data; uint32_t m_capacity_mask = 0; // Maximum capacity should be 2*instruction count, so 65536 uint32_t m_current = 0; uint32_t m_next_begin = 0; |
