Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #10892 #10894

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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