attempt to be compliant with gcc 4.6 (assuming that its more compliant with standards...
authorPaul Davis <paul@linuxaudiosystems.com>
Sat, 28 May 2011 23:45:34 +0000 (23:45 +0000)
committerPaul Davis <paul@linuxaudiosystems.com>
Sat, 28 May 2011 23:45:34 +0000 (23:45 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@9624 d708f5d6-7413-0410-9779-e7cbd77b26cf

libs/evoral/evoral/TimeConverter.hpp

index 17c8b0766599a4a8c7ff45612039ea7c3f5a4c80..5363f7dd1deaf8dc701736cd273065d4a6011523 100644 (file)
@@ -29,7 +29,8 @@ namespace Evoral {
 template<typename A, typename B>
 class TimeConverter {
 public:
-       TimeConverter (B ob = 0) : _origin_b (ob) {}
+       TimeConverter () : _origin_b (0) {}
+       TimeConverter (B ob) : _origin_b (ob) {}
        virtual ~TimeConverter() {}
 
        /** Convert A time to B time (A to B) */