Skip to content

Commit

Permalink
Fixed wrong Doxygen comment that created warnings under Clang.
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoLevy committed Dec 18, 2024
1 parent 9ea057a commit 9c97027
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
14 changes: 7 additions & 7 deletions src/lib/geogram/NL/nl_superlu.c
Original file line number Diff line number Diff line change
Expand Up @@ -268,13 +268,13 @@ typedef void (*FUNPTR_sp_preorder)(
typedef int (*FUNPTR_sp_ienv)(int);
typedef int (*FUNPTR_input_error)(const char *, int *);

typedef void (*FUNPTR_dgstrf) (superlu_options_t *options, SuperMatrix *A,
int relax, int panel_size, int *etree, void *work, int lwork,
int *perm_c, int *perm_r, SuperMatrix *L, SuperMatrix *U,
GlobalLU_t *Glu, /* persistent to facilitate multiple factorizations */
SuperLUStat_t *stat, int *info
);

typedef void (*FUNPTR_dgstrf) (
superlu_options_t *options, SuperMatrix *A,
int relax, int panel_size, int *etree, void *work, int lwork,
int *perm_c, int *perm_r, SuperMatrix *L, SuperMatrix *U,
GlobalLU_t *Glu, /* persistent to facilitate multiple factorizations */
SuperLUStat_t *stat, int *info
);

/**
* \brief The structure that stores the handle to
Expand Down
1 change: 0 additions & 1 deletion src/lib/geogram/basic/command_line.h
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ namespace GEO {
/**
* \brief Saves command line argument values to a file.
* \param[in] filename the complete path to the file.
* \param[in] program_name the name of the program.
*/
void GEOGRAM_API save_config(const std::string& filename);

Expand Down

0 comments on commit 9c97027

Please sign in to comment.