mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-22 21:58:08 +00:00
Fix order of includes to prevent issues with gettext.
This commit is contained in:
parent
a5a3b2ad26
commit
bcd6a682f2
2 changed files with 6 additions and 3 deletions
|
|
@ -21,8 +21,6 @@
|
|||
#include "local-conference-event-handler.h"
|
||||
#include "object/object-p.h"
|
||||
|
||||
#include "private.h"
|
||||
|
||||
#if __clang__ || __GNUC__ >= 4
|
||||
#pragma GCC diagnostic push
|
||||
#pragma GCC diagnostic ignored "-Wsuggest-override"
|
||||
|
|
@ -34,6 +32,9 @@
|
|||
#pragma GCC diagnostic pop
|
||||
#endif
|
||||
|
||||
/* Needs to be included after xml/conference-info.h because of _() macro definition that breaks everything */
|
||||
#include "private.h"
|
||||
|
||||
// =============================================================================
|
||||
|
||||
using namespace std;
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@
|
|||
*/
|
||||
|
||||
#include "remote-conference-event-handler.h"
|
||||
#include "private.h"
|
||||
#include "object/object-p.h"
|
||||
|
||||
#if __clang__ || __GNUC__ >= 4
|
||||
|
|
@ -31,6 +30,9 @@
|
|||
#pragma GCC diagnostic pop
|
||||
#endif
|
||||
|
||||
/* Needs to be included after xml/conference-info.h because of _() macro definition that breaks everything */
|
||||
#include "private.h"
|
||||
|
||||
// =============================================================================
|
||||
|
||||
using namespace std;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue