summaryrefslogtreecommitdiffstats
path: root/ingen/DataAccess.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'ingen/DataAccess.hpp')
-rw-r--r--ingen/DataAccess.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/ingen/DataAccess.hpp b/ingen/DataAccess.hpp
index 79bb84eb..13b5ac47 100644
--- a/ingen/DataAccess.hpp
+++ b/ingen/DataAccess.hpp
@@ -27,6 +27,7 @@
#include "lv2/data-access/data-access.h"
#include <cstdlib>
+#include <memory>
#include <utility>
namespace ingen {
@@ -57,7 +58,7 @@ struct DataAccess : public ingen::LV2Features::Feature
data->data_access = desc->extension_data;
- return make_shared<LV2_Feature>(
+ return std::make_shared<LV2_Feature>(
LV2_Feature{"http://lv2plug.in/ns/ext/data-access", data});
}
};