astyle formatting

This commit is contained in:
Daniel Marjamäki 2013-07-15 21:56:31 +02:00
parent 7443883b9c
commit 7b5c58d286
1 changed files with 2 additions and 2 deletions

View File

@ -63,13 +63,13 @@ public:
* @brief parse a function call and extract information about variable usage * @brief parse a function call and extract information about variable usage
* @param tok first token * @param tok first token
* @param var variables that the function read / write. * @param var variables that the function read / write.
* @param library --library files data * @param library --library files data
* @param value 0 => invalid with null pointers as parameter. * @param value 0 => invalid with null pointers as parameter.
* non-zero => invalid with uninitialized data. * non-zero => invalid with uninitialized data.
*/ */
static void parseFunctionCall(const Token &tok, static void parseFunctionCall(const Token &tok,
std::list<const Token *> &var, std::list<const Token *> &var,
const Library *library, const Library *library,
unsigned char value); unsigned char value);
/** /**