Skip to content
Snippets Groups Projects
Commit 51e32f09 authored by Jan Trávníček's avatar Jan Trávníček
Browse files

tidy: match parameter names in function declaration vs definition

parent 4c25aefe
No related branches found
No related tags found
1 merge request!200clang tidy fixes
......@@ -71,12 +71,12 @@ private:
* Helper function for the elimination of a single state according to the algorithm.
* @tparam SymbolType the type of symbol of the automaton's input ranked alphabet
* @tparam StateType the type of states of the automaton
* @param extendedAutomaton automaton for the elimination
* @param automaton automaton for the elimination
* @param state a state to eliminate
* @return the @p extendedAutomaton after the elimination of a state @state.
*/
template < class SymbolType, class StateType >
static automaton::ExtendedNFTA< SymbolType, StateType > eliminateState ( const automaton::ExtendedNFTA< SymbolType, StateType >& extendedAutomaton, const StateType& state );
static automaton::ExtendedNFTA< SymbolType, StateType > eliminateState ( const automaton::ExtendedNFTA< SymbolType, StateType >& automaton, const StateType& state );
 
/**
* Helper function to create RTE alternation from several transition's rtexps
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment