summaryrefslogtreecommitdiff
path: root/compiler/cli/src/App.test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/cli/src/App.test.cpp')
-rw-r--r--compiler/cli/src/App.test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/cli/src/App.test.cpp b/compiler/cli/src/App.test.cpp
index fe2d44179..59e5da3bd 100644
--- a/compiler/cli/src/App.test.cpp
+++ b/compiler/cli/src/App.test.cpp
@@ -16,7 +16,7 @@
#include "cli/App.h"
-#include <stdex/Memory.h>
+#include <memory>
#include <gtest/gtest.h>
@@ -52,7 +52,7 @@ TEST(APP, run)
cli::App app("test");
std::string args;
- app.insert("record", stdex::make_unique<RecordCommand>(3, args));
+ app.insert("record", std::make_unique<RecordCommand>(3, args));
const char *argv[] = {"record", "hello", "world"};