From 52b37cac974eb150d49eee1f0b5ba3654f6d7716 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Gl=C3=B6ckner?= Date: Mon, 9 May 2016 11:09:06 +0200 Subject: Instrument Vector using UniquePtr --- src/instrument.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/instrument.h') diff --git a/src/instrument.h b/src/instrument.h index 621dddb..ee67b3f 100644 --- a/src/instrument.h +++ b/src/instrument.h @@ -28,6 +28,7 @@ #include #include +#include #include "rangemap.h" #include "powerlist.h" @@ -83,4 +84,4 @@ private: }; // typedef std::map< std::string, Instrument > Instruments; -typedef std::vector Instruments; +using Instruments = std::vector>; -- cgit v1.2.3