File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -68,21 +68,21 @@ class algebras
6868 optional_group get_group ( node_type const & node ) const
6969 {
7070 auto iter = get_group_iter ( node );
71- if ( iter == m_groups.end () ) return boost:: none_t {} ;
71+ if ( iter == m_groups.end () ) return optional_group {};
7272 else return optional_group { *iter };
7373 }
7474
7575 optional_group get_group_from_inverse_operation ( node_type const & node ) const
7676 {
7777 auto iter = get_group_from_inverse_operation_iter ( node );
78- if ( iter == m_groups.end () ) return boost:: none_t {} ;
78+ if ( iter == m_groups.end () ) return optional_group {};
7979 else return optional_group { *iter };
8080 }
8181
8282 optional_group get_group_from_inverse_function ( node_type const & node ) const
8383 {
8484 auto iter = get_group_from_inverse_function_iter ( node );
85- if ( iter == m_groups.end () ) return boost:: none_t {} ;
85+ if ( iter == m_groups.end () ) return optional_group {};
8686 else return optional_group { *iter };
8787 }
8888
You can’t perform that action at this time.
0 commit comments