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

doc(op): Remove CeedOperatorView_Core from user docs #1636

Merged
merged 1 commit into from
Jul 15, 2024
Merged
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
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