summaryrefslogtreecommitdiff
path: root/ui/wx_form_build_hide_warnings.h
blob: 277fa0e7d2b5479d37055a8caab9ebf6a68c5c74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// **************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: http://www.gnu.org/licenses/gpl.html       *
// * Copyright (C) 2008-2011 ZenJu (zhnmju123 AT gmx.de)                    *
// **************************************************************************

#ifndef WX_FORM_BUILD_230948324234234
#define WX_FORM_BUILD_230948324234234

//hide compiler warnings in generated code

#ifdef __GNUC__
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
#endif

#endif //WX_FORM_BUILD_230948324234234
bgstack15