fix 64 bit template types
authorPaul Davis <paul@linuxaudiosystems.com>
Mon, 13 Jan 2014 01:01:12 +0000 (20:01 -0500)
committerPaul Davis <paul@linuxaudiosystems.com>
Mon, 13 Jan 2014 01:01:12 +0000 (20:01 -0500)
libs/evoral/src/IdentityConverter.cpp

index 61e98cacec99b2dad17b6879759bf402c1f93180..1af21debae07e2560df66452d497b4ff450ebce1 100644 (file)
  * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+#include <stdint.h>
 #include "evoral/TimeConverter.hpp"
 
-typedef long long framepos_t;
+typedef int64_t framepos_t; /* MUST match libs/ardour/ardour/types.h */
 
 namespace Evoral {