From cb4abd6f1650b11c946c29dab90aacb138fcb187 Mon Sep 17 00:00:00 2001 From: Lucas Manuel Rodriguez Date: Sun, 29 Sep 2013 16:08:07 -0300 Subject: [PATCH] Add doc. to typeStartToken and typeEndToken functions --- lib/symboldatabase.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/symboldatabase.h b/lib/symboldatabase.h index 76b010f52..e009a6a5e 100644 --- a/lib/symboldatabase.h +++ b/lib/symboldatabase.h @@ -166,6 +166,10 @@ public: /** * Get type start token. + * The type start token doesn't account 'static' and 'const' qualifiers + * E.g.: + * static const int * const p = ...; + * type start token ^ * @return type start token */ const Token *typeStartToken() const { @@ -174,6 +178,10 @@ public: /** * Get type end token. + * The type end token doesn't account the forward 'const' qualifier + * E.g.: + * static const int * const p = ...; + * type end token ^ * @return type end token */ const Token *typeEndToken() const {