Skip to content

Commit

Permalink
Merge pull request CEED#1636 from CEED/jrwrigh/fix_docs
Browse files Browse the repository at this point in the history
doc(op): Remove CeedOperatorView_Core from user docs
  • Loading branch information
jrwrigh authored Jul 15, 2024
2 parents c5f068b + 8bf1b13 commit a8d16bd
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions interface/ceed-operator.c
Original file line number Diff line number Diff line change
Expand Up @@ -1476,13 +1476,12 @@ int CeedOperatorSetName(CeedOperator op, const char *name) {
@brief Core logic for viewing a `CeedOperator`
@param[in] op `CeedOperator` to view brief summary
@param[in] stream Stream to write; typically `stdout` or a file
@param[in] stream Stream to write; typically `stdout` or a file
@param[in] is_full Whether to write full operator view or terse
@return Error code: 0 - success, otherwise - failure
@ref User
**/
int CeedOperatorView_Core(CeedOperator op, FILE *stream, bool is_full) {
static int CeedOperatorView_Core(CeedOperator op, FILE *stream, bool is_full) {
bool has_name = op->name, is_composite;

CeedCall(CeedOperatorIsComposite(op, &is_composite));
Expand Down

0 comments on commit a8d16bd

Please sign in to comment.