Skip to content

Commit

Permalink
Properly close quotes in warning
Browse files Browse the repository at this point in the history
Found warning like:
```
Possible candidates:
  'template < T >
  gmic::gmic(const T &pixel_type=(T) 0)
  'template < T >
  gmic::gmic(const char *const commands_line, const char *const custom_commands=0, const bool include_stdlib=true, float *const p_progress=0, bool *const p_is_abort=0, const T &pixel_type=(T) 0)
  'template < T >
  gmic::gmic(const char *const commands_line, cimg_library::CImgList< T > &images, cimg_library::CImgList< char > &images_names, const char *const custom_commands=0, const bool include_stdlib=true, float *const p_progress=0, bool *const p_is_abort=0)
```
Note the starting quote `'` but there is no closing quote (in case of a file and line the closing quote is present.
  • Loading branch information
albert-github committed Oct 10, 2019
1 parent 9a23681 commit 78b5c44
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/doxygen.cpp
Expand Up @@ -6405,6 +6405,8 @@ static void findMember(const Entry *root,
warnMsg+="' at line "+QCString().setNum(md->getDefLine()) +
" of file "+md->getDefFileName();
}
else
warnMsg += "'";

warnMsg+='\n';
}
Expand Down

0 comments on commit 78b5c44

Please sign in to comment.