aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/parser.h
diff options
context:
space:
mode:
authorGravatar Aaron Gyes <me@aaron.gy>2016-06-05 18:46:04 -0700
committerGravatar Aaron Gyes <me@aaron.gy>2016-06-05 18:57:45 -0700
commit1357f5a3647aba1024afe8557695c1a07a81b129 (patch)
treea00b6abc3342711725e1cf1850550eebd157733b /src/parser.h
parent32a585a52b20687a1a16c45142da2261d28b7a27 (diff)
Repair various invalid HeaderDoc comments.
Enable build setting to allow Xcode to complain about invalid comments.
Diffstat (limited to 'src/parser.h')
-rw-r--r--src/parser.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/parser.h b/src/parser.h
index d3fd8803..653ca8c6 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -312,15 +312,6 @@ class parser_t {
/// parser_t will clean it up.
profile_item_t *create_profile_item();
- /// Test if the specified string can be parsed, or if more bytes need to be read first. The
- /// result will have the PARSER_TEST_ERROR bit set if there is a syntax error in the code, and
- /// the PARSER_TEST_INCOMPLETE bit set if the code contains unclosed blocks.
- ///
- /// \param buff the text buffer to test
- /// \param block_level if non-null, the block nesting level will be filled out into this array
- /// \param out if non-null, any errors in the command will be filled out into this buffer
- /// \param prefix the prefix string to prepend to each error message written to the \c out
- /// buffer.
void get_backtrace(const wcstring &src, const parse_error_list_t &errors,
wcstring *output) const;