NO-OP sort includes - fixes macOS and --no-nls builds

Ardour's "pbd/i18n.h" needs to be included last,
after all template specialization, otherwise there will be
an ambiguity:

```
boost/function_types/detail/class_transform.hpp:23:26:
  error: ‘boost::mpl::placeholders::_’ has not been declared
  using mpl::placeholders::_;
```
This commit is contained in:
Robin Gareus 2022-05-20 21:41:29 +02:00
parent 3caa58ba78
commit 5f1a06f2aa
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 11 additions and 10 deletions

View File

@ -39,30 +39,31 @@
*************************************************************************************/
#include "sfdb_freesound_mootcher.h"
#include "pbd/xml++.h"
#include "pbd/error.h"
#include <iostream>
#include <sys/stat.h>
#include <sys/types.h>
#include <iostream>
#include <glib.h>
#include "pbd/gstdio_compat.h"
#include "pbd/i18n.h"
#include "pbd/error.h"
#include "pbd/pthread_utils.h"
#include "pbd/openuri.h"
#include "pbd/xml++.h"
#include "ardour/audio_library.h"
#include "ardour/debug.h"
#include "ardour/filesystem_paths.h"
#include "ardour/rc_configuration.h"
#include "pbd/pthread_utils.h"
#include "pbd/openuri.h"
#include "widgets/prompter.h"
#include "ardour_dialog.h"
#include "sfdb_freesound_mootcher.h"
#include "gui_thread.h"
#include "widgets/prompter.h"
#include "ui_config.h"
#include "pbd/i18n.h"
using namespace PBD;