From 2fc2df8c5ddb12dc3d0a25b0ea55e44cf1bf30a7 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 12 Jan 2014 20:01:12 -0500 Subject: [PATCH] fix 64 bit template types --- libs/evoral/src/IdentityConverter.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/evoral/src/IdentityConverter.cpp b/libs/evoral/src/IdentityConverter.cpp index 61e98cacec..1af21debae 100644 --- a/libs/evoral/src/IdentityConverter.cpp +++ b/libs/evoral/src/IdentityConverter.cpp @@ -16,9 +16,10 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#include #include "evoral/TimeConverter.hpp" -typedef long long framepos_t; +typedef int64_t framepos_t; /* MUST match libs/ardour/ardour/types.h */ namespace Evoral {