From 67af9cf9a950fc70c1ce8b162e9f11b680ff35c3 Mon Sep 17 00:00:00 2001 From: hjk Date: Thu, 3 Jan 2013 15:18:58 +0100 Subject: C++: Don't create unused values in the preprocessor. Change-Id: Ic158cf3b88fb0f8c69c1bc5cf45963e2ae9296e5 Reviewed-by: hjk --- src/libs/3rdparty/cplusplus/TranslationUnit.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/libs/3rdparty/cplusplus/TranslationUnit.cpp') diff --git a/src/libs/3rdparty/cplusplus/TranslationUnit.cpp b/src/libs/3rdparty/cplusplus/TranslationUnit.cpp index 7afef149ef1..949badccf5b 100644 --- a/src/libs/3rdparty/cplusplus/TranslationUnit.cpp +++ b/src/libs/3rdparty/cplusplus/TranslationUnit.cpp @@ -206,16 +206,16 @@ void TranslationUnit::tokenize() lex(&tk); // Gather where the expansion happens and its length. - unsigned macroOffset = static_cast(strtoul(tk.spell(), 0, 0)); + //unsigned macroOffset = static_cast(strtoul(tk.spell(), 0, 0)); lex(&tk); lex(&tk); // Skip the separating comma - unsigned macroLength = static_cast(strtoul(tk.spell(), 0, 0)); + //unsigned macroLength = static_cast(strtoul(tk.spell(), 0, 0)); lex(&tk); // NOTE: We are currently not using the macro offset and length. They // are kept here for now because of future use. - Q_UNUSED(macroOffset) - Q_UNUSED(macroLength) + //Q_UNUSED(macroOffset) + //Q_UNUSED(macroLength) // Now we need to gather the real line and columns from the upcoming // tokens. But notice this is only relevant for tokens which are expanded -- cgit v1.2.3