Fix Doxygen usage in util/misc/lexing.h

Change-Id: Ifdef347426655df2ab54aed0eec0cfbe4bbd7cb1
Reviewed-on: https://chromium-review.googlesource.com/592696
Reviewed-by: Joshua Peraza <jperaza@chromium.org>
This commit is contained in:
Mark Mentovai 2017-07-28 21:44:35 -04:00
parent 3a5837c773
commit c332e7ffda

View File

@ -21,8 +21,8 @@ namespace crashpad {
//!
//! \param[in,out] input A pointer to the char string to match against. \a input
//! is advanced past the matched pattern if it is found.
//! \param[in] pattern The pattern to match at the start of \input.
//! \return `true` if the pattern is matched exactly and \input is advanced,
//! \param[in] pattern The pattern to match at the start of \a input.
//! \return `true` if the pattern is matched exactly and \a input is advanced,
//! otherwise `false`.
bool AdvancePastPrefix(const char** input, const char* pattern);