Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
oguevremont committed May 21, 2024
1 parent 2c17a81 commit c4534a7
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions include/core/mu_parser_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ namespace internal

/**
* @brief Get the array of all function names.
* @return Available implemented functions
*/
std::vector<std::string>
get_function_names();
Expand All @@ -103,12 +104,9 @@ namespace internal
<< "Parsing Error at Column " << arg1
<< ". The parser said: " << arg2);


/**
* deal.II uses muParser as a purely internal dependency. To this end, we do
* not include any muParser headers in our own headers (and the bundled
* version of the dependency does not install its headers or compile a
* separate muparser library). Hence, to interface with muParser, we use the
* PIMPL idiom here to wrap a pointer to mu::Parser objects.
* @brief Base class used for thread safe instances of the parser.
*/
class muParserBase
{
Expand Down

0 comments on commit c4534a7

Please sign in to comment.