From eaa6a086e097548ac5e510f875d3c96618ccd990 Mon Sep 17 00:00:00 2001 From: Yury Melnichek Date: Sat, 18 Dec 2010 21:22:08 +0100 Subject: [PATCH] Fix unused variable warning in qt/main.cpp --- qt/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qt/main.cpp b/qt/main.cpp index d6c6d126bb..1624124dca 100644 --- a/qt/main.cpp +++ b/qt/main.cpp @@ -3,6 +3,7 @@ #include "../platform/platform.hpp" #include "../base/logging.hpp" +#include "../base/macros.hpp" #include "../version/version.hpp" @@ -66,6 +67,7 @@ namespace int main(int argc, char *argv[]) { InitializeFinalize mainGuard; + UNUSED_VALUE(mainGuard); LOG(LINFO, ("MapsWithMe started")); LOG(LINFO, ("Version : ", VERSION_STRING));