attempt to be compliant with gcc 4.6 (assuming that its more compliant with standards), by defining a default constructor for an object that is in static/global scope
git-svn-id: svn://localhost/ardour2/branches/3.0@9624 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
788dfc6a51
commit
df46ab2c02
@ -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) */
|
||||
|
Loading…
Reference in New Issue
Block a user