From 786ca037ec103e24809860ed7b653de4d6701764 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sun, 25 Jul 2010 18:17:44 +0200 Subject: [PATCH] Refactoring: changed 'bool varid=0' to 'bool varid=false' --- lib/token.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/token.h b/lib/token.h index 89993ec58..167c106b5 100644 --- a/lib/token.h +++ b/lib/token.h @@ -283,7 +283,7 @@ public: static void replace(Token *replaceThis, Token *start, Token *end); /** Stringify a token list (with or without varId) */ - std::string stringifyList(bool varid = 0, const char *title = 0) const; + std::string stringifyList(bool varid = false, const char *title = 0) const; std::string stringifyList(bool varid, const char *title, const std::vector &fileNames) const; /**