Skip to content

Commit

Permalink
Merge Pull Request trilinos#10894 from kliegeois/Trilinos/fix_undefin…
Browse files Browse the repository at this point in the history
…ed_teuchos_functions

Automatically Merged using Trilinos Pull Request AutoTester
PR Title: Fix trilinos#10892
PR Author: kliegeois
  • Loading branch information
trilinos-autotester authored Aug 18, 2022
2 parents 0bf48ec + f7f75fd commit b1a864d
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 10 deletions.
3 changes: 0 additions & 3 deletions packages/teuchos/core/src/Teuchos_Utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,6 @@ namespace Teuchos
{
public:

/** \brief print a description of the current build. */
static void aboutBuild();

/** \brief Set a number to zero if it is less than
* <tt>getChopVal()</tt>. */
static double chop(const double& x);
Expand Down
6 changes: 0 additions & 6 deletions packages/teuchos/parser/src/Teuchos_FiniteAutomaton.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -414,12 +414,6 @@ void simplify(FiniteAutomaton& result, FiniteAutomaton const& fa) {
swap(result, next);
}

void make_char_nfa(FiniteAutomaton& result, bool is_deterministic_init, int nstates_reserve) {
using std::swap;
FiniteAutomaton tmp(Teuchos::NCHARS, is_deterministic_init, nstates_reserve);
swap(result, tmp);
}

void add_char_transition(FiniteAutomaton& fa, int from_state, char at_char, int to_state) {
add_transition(fa, from_state, get_symbol(at_char), to_state);
}
Expand Down
1 change: 0 additions & 1 deletion packages/teuchos/parser/src/Teuchos_FiniteAutomaton.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ void make_deterministic(FiniteAutomaton& result, FiniteAutomaton& nfa);
void simplify_once(FiniteAutomaton& result, FiniteAutomaton const& fa);
void simplify(FiniteAutomaton& result, FiniteAutomaton const& fa);

FiniteAutomaton make_char_nfa(bool is_deterministic_init, int nstates_reserve);
void add_char_transition(FiniteAutomaton& fa, int from_state, char at_char, int to_state);
bool is_symbol(char c);
int get_symbol(char c);
Expand Down

0 comments on commit b1a864d

Please sign in to comment.