]> sigrok.org Git - pulseview.git/blobdiff - pv/data/decode/rowdata.cpp
Use the "default" keyword.
[pulseview.git] / pv / data / decode / rowdata.cpp
index e7d82fd72c5a77713980f1f7e6c69b714a4c59cb..af1fc449ac35924dac9796c7f14f0ca37f49f137 100644 (file)
@@ -14,8 +14,7 @@
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "rowdata.hpp"
@@ -26,10 +25,6 @@ namespace pv {
 namespace data {
 namespace decode {
 
-RowData::RowData()
-{
-}
-
 uint64_t RowData::get_max_sample() const
 {
        if (annotations_.empty())
@@ -41,7 +36,7 @@ void RowData::get_annotation_subset(
        vector<pv::data::decode::Annotation> &dest,
        uint64_t start_sample, uint64_t end_sample) const
 {
-       for (const auto & annotation : annotations_)
+       for (const auto& annotation : annotations_)
                if (annotation.end_sample() > start_sample &&
                        annotation.start_sample() <= end_sample)
                        dest.push_back(annotation);