diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2015-05-26 15:18:27 +0200 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2015-05-26 17:57:38 +0200 |
commit | f4707f72e0ce7f1c40337c72ae5c0c0c8ef0efed (patch) | |
tree | 31102ca2b739d2b21fcfc231585830969f2b4fa4 /test/api | |
parent | fdf6026e6249f99b260f15ec672a35c7e9db950d (diff) | |
download | qtlocation-mapboxgl-f4707f72e0ce7f1c40337c72ae5c0c0c8ef0efed.tar.gz |
Replace mbgl::util::make_unique<> with std::make_unique<>
Diffstat (limited to 'test/api')
-rw-r--r-- | test/api/repeated_render.cpp | 2 | ||||
-rw-r--r-- | test/api/set_style.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/api/repeated_render.cpp b/test/api/repeated_render.cpp index f563b00071..7f55237744 100644 --- a/test/api/repeated_render.cpp +++ b/test/api/repeated_render.cpp @@ -20,7 +20,7 @@ TEST(API, RepeatedRender) { HeadlessView view(display); DefaultFileSource fileSource(nullptr); - Log::setObserver(util::make_unique<FixtureLogObserver>()); + Log::setObserver(std::make_unique<FixtureLogObserver>()); Map map(view, fileSource, MapMode::Still); diff --git a/test/api/set_style.cpp b/test/api/set_style.cpp index 01ce1f0252..72260e6343 100644 --- a/test/api/set_style.cpp +++ b/test/api/set_style.cpp @@ -14,7 +14,7 @@ TEST(API, SetStyle) { HeadlessView view(display); DefaultFileSource fileSource(nullptr); - Log::setObserver(util::make_unique<FixtureLogObserver>()); + Log::setObserver(std::make_unique<FixtureLogObserver>()); { Map map(view, fileSource, MapMode::Still); |