13
0

fix clang compilation.

pbd/configuration_variable.h:84:6: error: call to function 'operator>>' that is neither visible in the template definition nor found by argument-dependent lookup

ardour/types.h defines  std::istream& operator>> and must be included prior to pbd/configuration_variable.h
This commit is contained in:
Robin Gareus 2015-09-17 00:10:50 +02:00
parent 31c0a536ba
commit 5d02c47d3a

View File

@ -27,6 +27,8 @@
#include <boost/function.hpp>
#include <boost/bind.hpp>
#include "ardour/types.h" // required for opeators used in pbd/configuration_variable.h
#include "pbd/stateful.h"
#include "pbd/xml++.h"
#include "pbd/configuration_variable.h"