I was told I needed a copy ctor here.

May as well see if this builds on Mac OS X.
This commit is contained in:
Jason Felds
2011-05-31 18:37:19 -04:00
parent f9eb6fb387
commit 5d496c41a7
+5
View File
@@ -15,6 +15,11 @@ struct BaseTimingSegment
BaseTimingSegment(): BaseTimingSegment():
startingRow(-1) {}; startingRow(-1) {};
BaseTimingSegment(const BaseTimingSegment &b)
{
*this = b;
}
/** /**
* @brief Set up a BaseTimingSegment with specified values. * @brief Set up a BaseTimingSegment with specified values.
* @param s the starting row / beat. */ * @param s the starting row / beat. */