diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2024-03-21 18:03:15 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2024-03-24 16:11:12 +0100 |
commit | 12e527332abf7d8b05ddfbb64656d67a067fb5fb (patch) | |
tree | 37e84b9c7342e26e4cdc609ec4be8e076a3da02f /test | |
parent | abde59100338999d04633aa6d440b71ce128c846 (diff) |
Compile with C++14 support.cpp14
Diffstat (limited to 'test')
-rw-r--r-- | test/dgreftest/dgreftest.cc | 2 | ||||
-rw-r--r-- | test/scopedfile.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/dgreftest/dgreftest.cc b/test/dgreftest/dgreftest.cc index a4eb897..dc7e45d 100644 --- a/test/dgreftest/dgreftest.cc +++ b/test/dgreftest/dgreftest.cc @@ -39,7 +39,7 @@ #include "midiinputengine.h" #include "wavfileoutputengine.h" -#include <cpp11fix.h> // required for c++11 +#include <memory> std::unique_ptr<AudioOutputEngine> createOutput(const std::string& name) { diff --git a/test/scopedfile.cc b/test/scopedfile.cc index 3c30734..763494e 100644 --- a/test/scopedfile.cc +++ b/test/scopedfile.cc @@ -29,7 +29,7 @@ #include <cstdlib> #include <unistd.h> -#include <cpp11fix.h> +#include <memory> #ifdef _WIN32 #define WIN32_LEAN_AND_MEAN |