mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 11:06:32 +01:00
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
1 changed files with 2 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue