diff --git a/doc/src/Developer_platform.rst b/doc/src/Developer_platform.rst index a31e9d1c72..74ad4c1aac 100644 --- a/doc/src/Developer_platform.rst +++ b/doc/src/Developer_platform.rst @@ -18,6 +18,9 @@ Time functions .. doxygenfunction:: walltime :project: progguide +.. doxygenfunction:: usleep + :project: progguide + Platform information functions ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -88,6 +91,9 @@ File and path functions and global constants Standard I/O function wrappers ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +.. doxygenvariable:: END_OF_FILE + :project: progguide + .. doxygenfunction:: ftell :project: progguide diff --git a/doc/utils/sphinx-config/false_positives.txt b/doc/utils/sphinx-config/false_positives.txt index 76127104e0..107e252074 100644 --- a/doc/utils/sphinx-config/false_positives.txt +++ b/doc/utils/sphinx-config/false_positives.txt @@ -3444,6 +3444,7 @@ usec uSemiParallel userguide username +usleep usr util utils diff --git a/src/tokenizer.cpp b/src/tokenizer.cpp index 43660d68ec..71b4ad610e 100644 --- a/src/tokenizer.cpp +++ b/src/tokenizer.cpp @@ -46,8 +46,8 @@ TokenizerException::TokenizerException(const std::string &msg, const std::string \endverbatim * - * \param str string to be processed - * \param separators string with separator characters (default: " \t\r\n\f") */ + * \param str string to be processed + * \param _separators string with separator characters (default: " \t\r\n\f") */ Tokenizer::Tokenizer(const std::string &str, const std::string &_separators) : text(str), separators(_separators), start(0), ntokens(std::string::npos)